[SCM] Samba Shared Repository - branch v3-2-test updated - initial-v3-2-test-2527-g3e1f88c

Michael Adam obnox at samba.org
Tue Feb 26 15:17:03 GMT 2008


The branch, v3-2-test has been updated
       via  3e1f88c90e4c5721381778062edfe6e681c8eec3 (commit)
       via  9b47a7329091b2bfe7cd9b2112ac8fa652ed9f60 (commit)
       via  79c199d16e565eabd9fd971247f8df62689bb92a (commit)
      from  c19f7a0e1004213f95e0bf8db5cd1f6697c7a47b (commit)

http://gitweb.samba.org/?samba.git;a=shortlog;h=v3-2-test


- Log -----------------------------------------------------------------
commit 3e1f88c90e4c5721381778062edfe6e681c8eec3
Author: Michael Adam <obnox at samba.org>
Date:   Tue Feb 26 16:04:34 2008 +0100

    Rerun make idl. To remove irritating semicolon.
    
    Michael

commit 9b47a7329091b2bfe7cd9b2112ac8fa652ed9f60
Author: Michael Adam <obnox at samba.org>
Date:   Tue Feb 26 16:02:47 2008 +0100

    Add libnet_join.idl to the IDL files to be processed by "make idl".
    
    Michael

commit 79c199d16e565eabd9fd971247f8df62689bb92a
Author: Michael Adam <obnox at samba.org>
Date:   Tue Feb 26 16:01:34 2008 +0100

    make idl: Only compile idl files newer than the output to be generated.
    
    Fix "if" condition in build_idl.sh to not always evaluate as false.
    
    Michael

-----------------------------------------------------------------------

Summary of changes:
 source/Makefile.in                  |    2 +-
 source/librpc/gen_ndr/libnet_join.h |    2 --
 source/script/build_idl.sh          |    2 +-
 3 files changed, 2 insertions(+), 4 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source/Makefile.in b/source/Makefile.in
index dce448d..1b91b7e 100644
--- a/source/Makefile.in
+++ b/source/Makefile.in
@@ -1137,7 +1137,7 @@ modules: SHOWFLAGS $(MODULES)
 IDL_FILES = unixinfo.idl lsa.idl dfs.idl echo.idl winreg.idl initshutdown.idl \
 	srvsvc.idl svcctl.idl eventlog.idl wkssvc.idl netlogon.idl notify.idl \
 	epmapper.idl messaging.idl xattr.idl misc.idl samr.idl security.idl \
-	dssetup.idl krb5pac.idl ntsvcs.idl
+	dssetup.idl krb5pac.idl ntsvcs.idl libnet_join.idl
 
 idl:
 	@IDL_FILES="$(IDL_FILES)" CPP="$(CPP)" PERL="$(PERL)" \
diff --git a/source/librpc/gen_ndr/libnet_join.h b/source/librpc/gen_ndr/libnet_join.h
index 40759cb..27e66ec 100644
--- a/source/librpc/gen_ndr/libnet_join.h
+++ b/source/librpc/gen_ndr/libnet_join.h
@@ -7,8 +7,6 @@
 #ifndef _HEADER_libnetjoin
 #define _HEADER_libnetjoin
 
-;
-
 
 struct libnet_JoinCtx {
 	struct {
diff --git a/source/script/build_idl.sh b/source/script/build_idl.sh
index 7aaddc7..39a6357 100755
--- a/source/script/build_idl.sh
+++ b/source/script/build_idl.sh
@@ -23,7 +23,7 @@ for f in ${IDL_FILES}; do
 	basename=`basename $f .idl`
 	ndr="librpc/gen_ndr/ndr_$basename.c"
 
-	if [ -f $ndr ] && false; then
+	if [ -f $ndr ] ; then
 		if [ "x`find librpc/idl/$f -newer $ndr -print`" = "xlibrpc/idl/$f" ]; then
 			list="$list librpc/idl/$f"
 		fi


-- 
Samba Shared Repository


More information about the samba-cvs mailing list