svn commit: samba r14139 - in branches/SAMBA_4_0/source/build/smb_build: .

jelmer at samba.org jelmer at samba.org
Fri Mar 10 11:25:21 GMT 2006


Author: jelmer
Date: 2006-03-10 11:25:19 +0000 (Fri, 10 Mar 2006)
New Revision: 14139

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

Log:
Fix issue with undefined variables.

Modified:
   branches/SAMBA_4_0/source/build/smb_build/TODO
   branches/SAMBA_4_0/source/build/smb_build/makefile.pm


Changeset:
Modified: branches/SAMBA_4_0/source/build/smb_build/TODO
===================================================================
--- branches/SAMBA_4_0/source/build/smb_build/TODO	2006-03-10 10:55:33 UTC (rev 14138)
+++ branches/SAMBA_4_0/source/build/smb_build/TODO	2006-03-10 11:25:19 UTC (rev 14139)
@@ -4,8 +4,9 @@
 - saner names for some of the .pc files
 - .pc files also when there is a public header?
 - get rid of include/structs.h and include/proto.h
+ - support including a custom header by librpc/gen_ndr/*.c files
+- plugin loading support in ldb
 - add register function to smbtorture
-- improve (un)install scripts (rewrite in perl?)
 - proper #include dependencies:
   for each subsystem:
   - include line in Makefile

Modified: branches/SAMBA_4_0/source/build/smb_build/makefile.pm
===================================================================
--- branches/SAMBA_4_0/source/build/smb_build/makefile.pm	2006-03-10 10:55:33 UTC (rev 14138)
+++ branches/SAMBA_4_0/source/build/smb_build/makefile.pm	2006-03-10 11:25:19 UTC (rev 14139)
@@ -538,15 +538,11 @@
 
 	push (@{$self->{pc_files}}, $path);
 
-	if (not defined($ctx->{CFLAGS}) ) { 
-		$ctx->{CFLAGS} = [];
-	}
-
 	smb_build::env::PkgConfig($self,
 		$path,
 		$link_name,
 		$ctx->{OUTPUT},
-		join(' ', @{$ctx->{CFLAGS}}), 
+		"",
 		"$ctx->{MAJOR_VERSION}.$ctx->{MINOR_VERSION}.$ctx->{RELEASE_VERSION}",
 		$ctx->{DESCRIPTION}
 	); 



More information about the samba-cvs mailing list