diff options
author | Andreas Schneider <asn@samba.org> | 2012-01-19 10:12:18 +0100 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2012-01-25 11:58:27 +0100 |
commit | 2efb390ab1c7d9e059e4566856c26184387d99e9 (patch) | |
tree | 1f3937dda339e79ef218666f013a801a4b511c09 /source3 | |
parent | b1d5dc91959858b1f3e822752e4026ab745d97df (diff) | |
download | samba-2efb390ab1c7d9e059e4566856c26184387d99e9.tar.gz samba-2efb390ab1c7d9e059e4566856c26184387d99e9.tar.bz2 samba-2efb390ab1c7d9e059e4566856c26184387d99e9.zip |
s3-waf: Link libsmb only against needed subsystems.
Diffstat (limited to 'source3')
-rwxr-xr-x | source3/wscript_build | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/source3/wscript_build b/source3/wscript_build index 7122d5294a..e3c11caddf 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -839,7 +839,17 @@ bld.SAMBA3_SUBSYSTEM('auth_generic', bld.SAMBA3_LIBRARY('libsmb', source=LIBSMB_SRC, - deps='LIBNTLMSSP auth_generic CLDAP LIBNMB LIBNBT LIBDRSUAPI SPNEGO_PARSE LIBTSOCKET KRBCLIENT cli_smb_common util_cmdline tevent', + deps=''' + LIBNTLMSSP + auth_generic + CLDAP + LIBNMB + SPNEGO_PARSE + LIBTSOCKET + KRBCLIENT + cli_smb_common + util_cmdline + tevent''', vars=locals(), private_library=True) |