diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2011-08-18 20:43:00 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2011-08-18 22:16:38 +0200 |
commit | 292fe7497134a9cc8f05844951547a2e8d14a4ac (patch) | |
tree | 14f9224a6a241c8af98a02c37f89f3b472e3eba5 /source4/auth/credentials/wscript_build | |
parent | 97afeaceda784f6ac56131b544e045be6804a44b (diff) | |
download | samba-292fe7497134a9cc8f05844951547a2e8d14a4ac.tar.gz samba-292fe7497134a9cc8f05844951547a2e8d14a4ac.tar.bz2 samba-292fe7497134a9cc8f05844951547a2e8d14a4ac.zip |
credentials: Rename library to samba-credentials to avoid name clashes.
Autobuild-User: Jelmer Vernooij <jelmer@samba.org>
Autobuild-Date: Thu Aug 18 22:16:38 CEST 2011 on sn-devel-104
Diffstat (limited to 'source4/auth/credentials/wscript_build')
-rw-r--r-- | source4/auth/credentials/wscript_build | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/auth/credentials/wscript_build b/source4/auth/credentials/wscript_build index 99de466be3..c708e7e574 100644 --- a/source4/auth/credentials/wscript_build +++ b/source4/auth/credentials/wscript_build @@ -1,6 +1,6 @@ #!/usr/bin/env python -bld.SAMBA_LIBRARY('credentials', +bld.SAMBA_LIBRARY('samba-credentials', source='credentials.c', autoproto='credentials_proto.h', public_headers='credentials.h', @@ -10,7 +10,7 @@ bld.SAMBA_LIBRARY('credentials', bld.SAMBA_SUBSYSTEM('CREDENTIALS_KRB5', source='credentials_krb5.c', - deps='KERBEROS_UTIL gssapi credentials', + deps='KERBEROS_UTIL gssapi samba-credentials', public_deps='com_err authkrb5', ) @@ -21,11 +21,11 @@ bld.SAMBA_SUBSYSTEM('CREDENTIALS_SECRETS', bld.SAMBA_SUBSYSTEM('CREDENTIALS_NTLM', source='credentials_ntlm.c', - deps='credentials') + deps='samba-credentials') bld.SAMBA_PYTHON('pycredentials', source='pycredentials.c', - public_deps='credentials cmdline-credentials pytalloc-util pyparam_util CREDENTIALS_KRB5 CREDENTIALS_SECRETS', + public_deps='samba-credentials cmdline-credentials pytalloc-util pyparam_util CREDENTIALS_KRB5 CREDENTIALS_SECRETS', realname='samba/credentials.so' ) |