diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-10-21 08:30:39 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-10-21 19:03:24 +1100 |
commit | e73739a338fd2586e64a6c892e6f798c08b31a22 (patch) | |
tree | 08dcf82a26c2cd8b7df5546b58f021515ef3dfec /source4/auth | |
parent | a913e79ee52fa21b9d7469a497fc8f63571fc913 (diff) | |
download | samba-e73739a338fd2586e64a6c892e6f798c08b31a22.tar.gz samba-e73739a338fd2586e64a6c892e6f798c08b31a22.tar.bz2 samba-e73739a338fd2586e64a6c892e6f798c08b31a22.zip |
s4-auth: make auth a private library
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/auth')
-rw-r--r-- | source4/auth/ntlm/wscript_build | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/source4/auth/ntlm/wscript_build b/source4/auth/ntlm/wscript_build index ab17237ea6..f70bebb30c 100644 --- a/source4/auth/ntlm/wscript_build +++ b/source4/auth/ntlm/wscript_build @@ -52,11 +52,12 @@ bld.SAMBA_SUBSYSTEM('PAM_ERRORS', ) -bld.SAMBA_SUBSYSTEM('auth', - source='auth.c auth_util.c auth_simple.c', - autoproto='auth_proto.h', - deps='LIBSAMBA-UTIL LIBSECURITY SAMDB CREDENTIALS UTIL_TEVENT', - ) +bld.SAMBA_LIBRARY('auth', + source='auth.c auth_util.c auth_simple.c', + autoproto='auth_proto.h', + deps='LIBSAMBA-UTIL LIBSECURITY SAMDB CREDENTIALS UTIL_TEVENT', + private_library=True + ) bld.SAMBA_MODULE('auth_server_service', source='auth_server_service.c', |