Author: jelmer Date: 2006-03-21 10:57:02 +0000 (Tue, 21 Mar 2006) New Revision: 14610
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=14610 Log: Fix writing of modulesdir to .pc files Add two more .pc files Modified: branches/SAMBA_4_0/source/build/smb_build/env.pm branches/SAMBA_4_0/source/heimdal/lib/des/ branches/SAMBA_4_0/source/rpc_server/ branches/SAMBA_4_0/source/rpc_server/config.mk branches/SAMBA_4_0/source/torture/ branches/SAMBA_4_0/source/torture/config.mk Changeset: Modified: branches/SAMBA_4_0/source/build/smb_build/env.pm =================================================================== --- branches/SAMBA_4_0/source/build/smb_build/env.pm 2006-03-21 10:02:33 UTC (rev 14609) +++ branches/SAMBA_4_0/source/build/smb_build/env.pm 2006-03-21 10:57:02 UTC (rev 14610) @@ -67,7 +67,7 @@ __EOF__ if ($hasmodules) { - print OUT "modulesdir=$self->{config}->{modulesdir}\n" ; + print OUT "modulesdir=$self->{config}->{modulesdir}/$name\n" ; } print OUT "\n"; @@ -79,9 +79,6 @@ print OUT "Version: $version\n"; print OUT "Libs: -L\${libdir} $libs\n"; print OUT "Cflags: -I\${includedir} $cflags\n"; - if ($hasmodules) { - print OUT "Modulesdir: \${modulesdir}\n"; - } close(OUT); } Property changes on: branches/SAMBA_4_0/source/heimdal/lib/des ___________________________________________________________________ Name: svn:ignore - .sconsign *.d + hcrypto .sconsign *.d Property changes on: branches/SAMBA_4_0/source/rpc_server ___________________________________________________________________ Name: svn:ignore - dcerpc_server_proto.h *.d + *.pc dcerpc_server_proto.h *.d Modified: branches/SAMBA_4_0/source/rpc_server/config.mk =================================================================== --- branches/SAMBA_4_0/source/rpc_server/config.mk 2006-03-21 10:02:33 UTC (rev 14609) +++ branches/SAMBA_4_0/source/rpc_server/config.mk 2006-03-21 10:57:02 UTC (rev 14610) @@ -204,6 +204,7 @@ ################################################ # Start SUBSYSTEM dcerpc_server [LIBRARY::dcerpc_server] +DESCRIPTION = DCE/RPC Server implementation VERSION = 0.0.1 SO_VERSION = 0 PUBLIC_HEADERS = dcerpc_server.h Property changes on: branches/SAMBA_4_0/source/torture ___________________________________________________________________ Name: svn:ignore - util.h proto.h torturebad.c *.d + *.pc util.h proto.h torturebad.c *.d Modified: branches/SAMBA_4_0/source/torture/config.mk =================================================================== --- branches/SAMBA_4_0/source/torture/config.mk 2006-03-21 10:02:33 UTC (rev 14609) +++ branches/SAMBA_4_0/source/torture/config.mk 2006-03-21 10:57:02 UTC (rev 14610) @@ -1,5 +1,6 @@ # TORTURE subsystem [LIBRARY::torture] +DESCRIPTION = Samba torture (test) suite SO_VERSION = 0 VERSION = 0.0.1 PUBLIC_HEADERS = torture.h
