diff options
author | Günther Deschner <gd@samba.org> | 2010-12-14 22:18:43 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-12-14 23:29:25 +0100 |
commit | 4f4f7694c1a8d973b808f7a6b68fbc04147fcfab (patch) | |
tree | a76bcd3fe782d990cbbb6e0981e2cce8db8b0ca2 | |
parent | 9e6736cafd5ea86294b780f32511a1317df94b3f (diff) | |
download | samba-4f4f7694c1a8d973b808f7a6b68fbc04147fcfab.tar.gz samba-4f4f7694c1a8d973b808f7a6b68fbc04147fcfab.tar.bz2 samba-4f4f7694c1a8d973b808f7a6b68fbc04147fcfab.zip |
s3-waf: add missing libnss_wins.so.2 library.
Guenther
Autobuild-User: Günther Deschner <gd@samba.org>
Autobuild-Date: Tue Dec 14 23:29:25 CET 2010 on sn-devel-104
-rw-r--r-- | source3/wscript_build | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/source3/wscript_build b/source3/wscript_build index b71d2b7cd4..3c8d2cdeab 100644 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -671,8 +671,7 @@ DEBUG2HTML_SRC = '''utils/debug2html.c utils/debugparse.c''' SMBFILTER_SRC = '''utils/smbfilter.c''' -WINBIND_WINS_NSS_SRC = '''../nsswitch/wins.c ${PARAM_SRC} - ${LIB_NONSMBD_SRC} ${LIBSMB_ERR_SRC}''' +WINBIND_WINS_NSS_SRC = '''../nsswitch/wins.c''' WBINFO_SRC = '''../nsswitch/wbinfo.c''' @@ -785,6 +784,13 @@ bld.SAMBA_LIBRARY('nss_winbind', realname='libnss_winbind.so.2', vnum='2') +bld.SAMBA_LIBRARY('nss_wins', + source=WINBIND_WINS_NSS_SRC, + deps='''WBCOMMON PARAM LIBSMB LIB_NONSMBD LIBTSOCKET KRBCLIENT + cap wbclient''', + realname='libnss_wins.so.2', + vnum='2') + if bld.CONFIG_SET('WITH_PAM_MODULES'): bld.SAMBA_LIBRARY('pamwinbind', source=PAM_WINBIND_SRC, |