summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-10-30 11:44:07 +1100
committerAndrew Tridgell <tridge@samba.org>2010-10-30 23:49:01 +1100
commit7a26bb9f7790cf9e0bf2e0e7b841fd5c4a64594c (patch)
tree484bc7246237655654a3789b38b54279a700be51
parent306754f2949f72f2629a954e2c8bfd6182307370 (diff)
downloadsamba-7a26bb9f7790cf9e0bf2e0e7b841fd5c4a64594c.tar.gz
samba-7a26bb9f7790cf9e0bf2e0e7b841fd5c4a64594c.tar.bz2
samba-7a26bb9f7790cf9e0bf2e0e7b841fd5c4a64594c.zip
s4-credentials: make a private library from CREDENTIALS subsystem
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
-rw-r--r--source4/auth/credentials/wscript_build17
1 files changed, 9 insertions, 8 deletions
diff --git a/source4/auth/credentials/wscript_build b/source4/auth/credentials/wscript_build
index d6f522f1a7..583ba0b70c 100644
--- a/source4/auth/credentials/wscript_build
+++ b/source4/auth/credentials/wscript_build
@@ -1,21 +1,22 @@
#!/usr/bin/env python
-bld.SAMBA_SUBSYSTEM('CREDENTIALS',
- source='credentials.c',
- autoproto='credentials_proto.h',
- public_headers='credentials.h',
- deps='LIBCRYPTO errors events LIBCLI_AUTH security',
- )
+bld.SAMBA_LIBRARY('CREDENTIALS',
+ source='credentials.c',
+ autoproto='credentials_proto.h',
+ public_headers='credentials.h',
+ deps='LIBCRYPTO errors events LIBCLI_AUTH security CREDENTIALS_SECRETS CREDENTIALS_KRB5',
+ private_library=True
+ )
bld.SAMBA_SUBSYSTEM('CREDENTIALS_KRB5',
source='credentials_krb5.c',
deps='KERBEROS_UTIL gssapi CREDENTIALS',
- public_deps='com_err KERBEROS',
+ public_deps='com_err authkrb5',
)
bld.SAMBA_SUBSYSTEM('CREDENTIALS_SECRETS',
source='credentials_secrets.c',
- deps='SECRETS CREDENTIALS_KRB5 CREDENTIALS_NTLM ldb',
+ deps='CREDENTIALS_KRB5 CREDENTIALS_NTLM ldb samdb-common',
)
bld.SAMBA_SUBSYSTEM('CREDENTIALS_NTLM',