diff options
author | Günther Deschner <gd@samba.org> | 2011-09-15 12:52:49 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-09-15 15:31:59 +0200 |
commit | bd5445ee4f663d18197dbb01078cc21342dd5045 (patch) | |
tree | 65fa6819f61432c1c701a8ec9b9946ad88db5c84 /source3 | |
parent | ef8dc2d30e5387b38ac1a05eaece8f22326a24f8 (diff) | |
download | samba-bd5445ee4f663d18197dbb01078cc21342dd5045.tar.gz samba-bd5445ee4f663d18197dbb01078cc21342dd5045.tar.bz2 samba-bd5445ee4f663d18197dbb01078cc21342dd5045.zip |
waf: restore libsmbclient handling.
This is a temporary solution to get libsmbclient installed properly as a library
(including symlinks and proper symbols). I was not able to make the old internal
library name 'libsmb/smbclient' work together with "realname" and/or "link_name".
Maybe one of the waf gurus has more ideas here.
Guenther
Autobuild-User: Günther Deschner <gd@samba.org>
Autobuild-Date: Thu Sep 15 15:31:59 CEST 2011 on sn-devel-104
Diffstat (limited to 'source3')
-rwxr-xr-x | source3/wscript_build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/wscript_build b/source3/wscript_build index bca1cdf8a3..4bedbfe032 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -675,7 +675,7 @@ bld.SAMBA3_LIBRARY('netapi', vnum='0', vars=locals()) -bld.SAMBA3_LIBRARY('libsmb/smbclient', +bld.SAMBA3_LIBRARY('smbclient', source=LIBSMBCLIENT_SRC, public_deps='''talloc tdb_compat wbclient cap param smbd_shim libsmb KRBCLIENT pdb SMBLDAP LIBMSRPC_GEN msrpc3 libcli_lsa3 RPC_NDR_SRVSVC popt_samba3''', @@ -1175,7 +1175,7 @@ bld.SAMBA3_BINARY('client/smbclient' + bld.env.suffix3, source=CLIENT_SRC, deps='''talloc tdb_compat cap popt_samba3 pdb libsmb smbd_shim param wbclient param KRBCLIENT LIBMSRPC_GEN - msrpc3 SMBREADLINE libsmb/smbclient RPC_NDR_SRVSVC INIT_LSA + msrpc3 SMBREADLINE smbclient RPC_NDR_SRVSVC INIT_LSA cli_smb_common''', vars=locals()) @@ -1252,7 +1252,7 @@ bld.SAMBA3_BINARY('pdbedit', bld.SAMBA3_BINARY('smbget', source=SMBGET_SRC, - deps='''talloc tdb_compat libsmb/smbclient popt_samba3''', + deps='''talloc tdb_compat smbclient popt_samba3''', vars=locals()) bld.SAMBA3_BINARY('nmblookup' + bld.env.suffix3, |