[SCM] Samba Shared Repository - branch master updated

Andrew Tridgell tridge at samba.org
Tue Oct 26 18:23:01 MDT 2010


The branch, master has been updated
       via  3e93dc0 s3-waf: fixed the s3 waf build
       via  afe40c7 waf: quote subsystem names to make them clearer
      from  5bb7723 lib/util: remove useless ../lib/util/mutex.*

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 3e93dc02f39b41eac812e05a45777dfce9b8298e
Author: Andrew Tridgell <tridge at samba.org>
Date:   Wed Oct 27 10:38:50 2010 +1100

    s3-waf: fixed the s3 waf build
    
    Jelmer, this undoes some of your library renaming, as it conflicted
    with existing binary and subsystem names
    
    Autobuild-User: Andrew Tridgell <tridge at samba.org>
    Autobuild-Date: Wed Oct 27 00:22:34 UTC 2010 on sn-devel-104

commit afe40c7eccec25b8361fbcbc7f6af43c6846f410
Author: Andrew Tridgell <tridge at samba.org>
Date:   Wed Oct 27 10:37:58 2010 +1100

    waf: quote subsystem names to make them clearer

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

Summary of changes:
 buildtools/wafsamba/samba_deps.py |    2 +-
 source3/wscript_build             |   17 ++++++++---------
 2 files changed, 9 insertions(+), 10 deletions(-)


Changeset truncated at 500 lines:

diff --git a/buildtools/wafsamba/samba_deps.py b/buildtools/wafsamba/samba_deps.py
index a89c3e8..f54f3b2 100644
--- a/buildtools/wafsamba/samba_deps.py
+++ b/buildtools/wafsamba/samba_deps.py
@@ -435,7 +435,7 @@ def build_direct_deps(bld, tgt_list):
             d = EXPAND_ALIAS(bld, d)
             if d == t.sname: continue
             if not d in targets:
-                Logs.error("Unknown dependency %s in %s" % (d, t.sname))
+                Logs.error("Unknown dependency '%s' in '%s'" % (d, t.sname))
                 sys.exit(1)
             if targets[d] in [ 'EMPTY', 'DISABLED' ]:
                 continue
diff --git a/source3/wscript_build b/source3/wscript_build
index a151583..3e69366 100644
--- a/source3/wscript_build
+++ b/source3/wscript_build
@@ -892,7 +892,7 @@ bld.RECURSE('../libcli/security')
 bld.SAMBA_SUBSYSTEM('WBCOMMON',
                     source=WBCOMMON_SRC)
 
-bld.SAMBA_LIBRARY('wbclient',
+bld.SAMBA_LIBRARY('libwbclient',
                     source='''../nsswitch/libwbclient/wbc_guid.c
                               ../nsswitch/libwbclient/wbc_idmap.c
                               ../nsswitch/libwbclient/wbclient.c
@@ -904,7 +904,7 @@ bld.SAMBA_LIBRARY('wbclient',
                     private_library=True,
                     public_deps='talloc WBCOMMON')
 
-bld.SAMBA_LIBRARY('netapi',
+bld.SAMBA_LIBRARY('libnetapi',
                     source=LIBNETAPI_SRC,
                     public_deps='''talloc tdb cap libwbclient LIB_NONSMBD LIBSMB KRBCLIENT
                     PASSDB SMBLDAP GROUPDB PARAM_WITHOUT_REG DYNCONFIG
@@ -914,7 +914,7 @@ bld.SAMBA_LIBRARY('netapi',
                     private_library=True,
                     vars=locals())
 
-bld.SAMBA_LIBRARY('smbclient',
+bld.SAMBA_LIBRARY('libsmbclient',
                     source=LIBSMBCLIENT_SRC,
                     public_deps='''talloc tdb libwbclient cap PARAM LIB_NONSMBD LIBSMB KRBCLIENT PASSDB SMBLDAP GROUPDB
                     LIBMSRPC_GEN LIBMSRPC''',
@@ -929,7 +929,7 @@ bld.SAMBA_LIBRARY('smbsharemodes',
                     private_library=True,
                     vars=locals())
 
-bld.SAMBA_LIBRARY('addns',
+bld.SAMBA_LIBRARY('libaddns',
                     source=LIBADDNS_SRC,
                     public_deps='talloc krb5 k5crypto com_err gssapi gssapi_krb5',
                     private_library=True,
@@ -942,7 +942,7 @@ bld.SAMBA_SUBSYSTEM('LIBMSRPC',
 
 bld.SAMBA_SUBSYSTEM('LIBMSRPC_GEN',
                     source='',
-                    deps='''NDR_STANDARD NDR_DSSETUP NDR_SPOOLSS''',
+                    deps='''ndr-standard NDR_DSSETUP NDR_SPOOLSS''',
                     vars=locals())
 
 bld.SAMBA_SUBSYSTEM('LIBGPO',
@@ -1168,9 +1168,8 @@ bld.SAMBA_SUBSYSTEM('ndr-standard',
                     deps='''
                     NDR_SECURITY NDR_LSA NDR_SAMR NDR_NETLOGON NDR_EVENTLOG NDR_DFS
                     NDR_NTSVCS NDR_SVCCTL NDR_INITSHUTDOWN NDR_WKSSVC NDR_SRVSVC NDR_WINREG
-                    NDR_ECHO libsecurity NDR_DNS
+                    NDR_ECHO security NDR_DNS
                     ''',
-                    public_deps='LIBNDR',
                     vars=locals())
 
 #FIXME
@@ -1189,7 +1188,7 @@ bld.SAMBA_SUBSYSTEM('NDR_DCERPC',
                     source='../librpc/gen_ndr/ndr_dcerpc.c',
                     vars=locals())
 
-bld.SAMBA_SUBSYSTEM('samba-errors',
+bld.SAMBA_SUBSYSTEM('errors',
 	source='../libcli/util/doserr.c libsmb/nterr.c')
 
 bld.SAMBA_SUBSYSTEM('NDR_NBT_BUF',
@@ -1263,7 +1262,7 @@ bld.SAMBA_BINARY('smbclient',
                  source=CLIENT_SRC,
                  deps='''talloc tdb cap resolv POPT_SAMBA PASSDB LIBSMB LIB_NONSMBD
                  PARAM_WITHOUT_REG libwbclient PARAM KRBCLIENT LIBMSRPC_GEN
-                 LIBMSRPC SMBREADLINE''',
+                 LIBMSRPC SMBREADLINE libsmbclient''',
                  vars=locals())
 
 bld.SAMBA_BINARY('net',


-- 
Samba Shared Repository


More information about the samba-cvs mailing list