diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-10-21 08:30:55 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-10-21 19:03:24 +1100 |
commit | aa88884d37915ac06ed33766e6ad7460d1306d62 (patch) | |
tree | a78fa11029814fe778e97101cfa2a2e744d239bb /source4/libcli | |
parent | e73739a338fd2586e64a6c892e6f798c08b31a22 (diff) | |
download | samba-aa88884d37915ac06ed33766e6ad7460d1306d62.tar.gz samba-aa88884d37915ac06ed33766e6ad7460d1306d62.tar.xz samba-aa88884d37915ac06ed33766e6ad7460d1306d62.zip |
s4-libcli: make LIBCLI_LDAP a private library
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/libcli')
-rw-r--r-- | source4/libcli/ldap/wscript_build | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/source4/libcli/ldap/wscript_build b/source4/libcli/ldap/wscript_build index 62d6bf387a2..651e6cda6c0 100644 --- a/source4/libcli/ldap/wscript_build +++ b/source4/libcli/ldap/wscript_build @@ -1,10 +1,11 @@ #!/usr/bin/env python -bld.SAMBA_SUBSYSTEM('LIBCLI_LDAP', - source='ldap_client.c ldap_bind.c ldap_ildap.c ldap_controls.c', - autoproto='ldap_proto.h', - public_deps='LIBSAMBA-ERRORS tevent LIBPACKET', - public_headers='libcli_ldap.h:ldap-util.h', - deps='LIBCLI_COMPOSITE samba_socket NDR_SAMR LIBTLS LIBCLI_LDAP_NDR LIBNDR LP_RESOLVE gensec LIBCLI_LDAP_MESSAGE' - ) +bld.SAMBA_LIBRARY('LIBCLI_LDAP', + source='ldap_client.c ldap_bind.c ldap_ildap.c ldap_controls.c', + autoproto='ldap_proto.h', + public_deps='LIBSAMBA-ERRORS tevent LIBPACKET', + public_headers='libcli_ldap.h:ldap-util.h', + deps='LIBCLI_COMPOSITE samba_socket NDR_SAMR LIBTLS LIBCLI_LDAP_NDR LIBNDR LP_RESOLVE gensec LIBCLI_LDAP_MESSAGE', + private_library=True + ) |