diff options
author | Günther Deschner <gd@samba.org> | 2011-10-17 17:19:27 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-11-16 14:03:05 +0100 |
commit | 693781db8962a39af376e5d5df0d36e1f3ad127b (patch) | |
tree | fd962e2218f84de697cebc1a63126d93c720bb2d /source3/wscript_build | |
parent | e81d5505f48de800d2314cf6971a1417ca915fde (diff) | |
download | samba-693781db8962a39af376e5d5df0d36e1f3ad127b.tar.gz samba-693781db8962a39af376e5d5df0d36e1f3ad127b.tar.bz2 samba-693781db8962a39af376e5d5df0d36e1f3ad127b.zip |
s3-waf: create a smbldap.so library.
Guenther
Autobuild-User: Günther Deschner <gd@samba.org>
Autobuild-Date: Wed Nov 16 14:03:05 CET 2011 on sn-devel-104
Diffstat (limited to 'source3/wscript_build')
-rwxr-xr-x | source3/wscript_build | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/source3/wscript_build b/source3/wscript_build index d91bcffd1f..99d40406d7 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -714,7 +714,7 @@ bld.SAMBA3_SUBSYSTEM('TLDAP', bld.SAMBA3_LIBRARY('pdb', source=PASSDB_SRC, - deps='SECRETS3 SMBLDAP GROUPDB wbclient LIBCLI_AUTH flag_mapping', + deps='SECRETS3 GROUPDB wbclient LIBCLI_AUTH flag_mapping', private_library=True, public_headers=''' include/passdb.h @@ -837,15 +837,17 @@ bld.SAMBA3_SUBSYSTEM('SECRETS3', deps='NDR_SECRETS param samba3core pdb', vars=locals()) -bld.SAMBA3_SUBSYSTEM('SMBLDAP', +bld.SAMBA3_LIBRARY('smbldap', source=SMBLDAP_SRC, - deps='ldap lber', + deps='ldap lber samba-util param', vars=locals(), - enabled=bld.env.HAVE_LDAP) + enabled=bld.env.HAVE_LDAP, + private_library=True, + public_headers='include/smbldap.h include/smb_ldap.h') bld.SAMBA3_LIBRARY('ads', source=LIBADS_SRC, - deps='cli-ldap-common KRB5_WRAP ldap lber KRBCLIENT param LIBNMB libsmb DCUTIL', + deps='cli-ldap-common KRB5_WRAP ldap lber KRBCLIENT param LIBNMB libsmb DCUTIL smbldap', private_library=True, vars=locals()) |