svn commit: samba r14500 - in branches/SAMBA_4_0/source: . librpc scripting/ejs web_server

jelmer at samba.org jelmer at samba.org
Fri Mar 17 01:39:03 GMT 2006


Author: jelmer
Date: 2006-03-17 01:39:02 +0000 (Fri, 17 Mar 2006)
New Revision: 14500

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=14500

Log:
Make some more functions public

Modified:
   branches/SAMBA_4_0/source/librpc/config.mk
   branches/SAMBA_4_0/source/main.mk
   branches/SAMBA_4_0/source/scripting/ejs/smbscript.c
   branches/SAMBA_4_0/source/web_server/http.c


Changeset:
Modified: branches/SAMBA_4_0/source/librpc/config.mk
===================================================================
--- branches/SAMBA_4_0/source/librpc/config.mk	2006-03-17 01:38:14 UTC (rev 14499)
+++ branches/SAMBA_4_0/source/librpc/config.mk	2006-03-17 01:39:02 UTC (rev 14500)
@@ -817,7 +817,7 @@
 INIT_FUNCTION = ejs_init_netlogon
 OBJ_FILES = gen_ndr/ndr_netlogon_ejs.o
 SUBSYSTEM = smbcalls
-REQUIRED_SUBSYSTEMS = dcerpc NDR_NETLOGON EJSRPC
+REQUIRED_SUBSYSTEMS = dcerpc NDR_NETLOGON EJSRPC RPC_EJS_SAMR
 
 [MODULE::RPC_EJS_SVCCTL]
 INIT_FUNCTION = ejs_init_svcctl

Modified: branches/SAMBA_4_0/source/main.mk
===================================================================
--- branches/SAMBA_4_0/source/main.mk	2006-03-17 01:38:14 UTC (rev 14499)
+++ branches/SAMBA_4_0/source/main.mk	2006-03-17 01:39:02 UTC (rev 14500)
@@ -1,5 +1,6 @@
 all: basics bin/asn1_compile bin/compile_et binaries libraries modules
 
+include dynconfig.mk
 include heimdal_build/config.mk
 include config.mk
 include dsdb/config.mk

Modified: branches/SAMBA_4_0/source/scripting/ejs/smbscript.c
===================================================================
--- branches/SAMBA_4_0/source/scripting/ejs/smbscript.c	2006-03-17 01:38:14 UTC (rev 14499)
+++ branches/SAMBA_4_0/source/scripting/ejs/smbscript.c	2006-03-17 01:39:02 UTC (rev 14500)
@@ -30,7 +30,7 @@
 
 static EjsId eid;
 
-void ejs_exception(const char *reason)
+_PUBLIC_ void ejs_exception(const char *reason)
 {
 	Ejs *ep = ejsPtr(eid);
 	ejsSetErrorMsg(eid, "%s", reason);

Modified: branches/SAMBA_4_0/source/web_server/http.c
===================================================================
--- branches/SAMBA_4_0/source/web_server/http.c	2006-03-17 01:38:14 UTC (rev 14499)
+++ branches/SAMBA_4_0/source/web_server/http.c	2006-03-17 01:39:02 UTC (rev 14500)
@@ -467,7 +467,7 @@
 static jmp_buf ejs_exception_buf;
 static const char *exception_reason;
 
-void ejs_exception(const char *reason)
+_PUBLIC_ void ejs_exception(const char *reason)
 {
 	Ejs *ep = ejsPtr(0);
 	if (ep) {



More information about the samba-cvs mailing list