mirror of
https://github.com/samba-team/samba.git
synced 2025-01-14 19:24:43 +03:00
a8da13cd5c
this prevents symbol duplication of the asn1 symbols in the service and ntvfs subsystems Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
14 lines
478 B
Python
14 lines
478 B
Python
#!/usr/bin/env python
|
|
|
|
if bld.CONFIG_SET('WITH_PAM_MODULES'):
|
|
bld.SAMBA3_LIBRARY('pamsmbpass',
|
|
source='''pam_smb_auth.c
|
|
pam_smb_passwd.c
|
|
pam_smb_acct.c
|
|
support.c''',
|
|
deps='''tdb talloc pam PAM_ERRORS wbclient cap asn1util param LIB_NONSMBD passdb SMBLDAP
|
|
LIBNTLMSSP LIBTSOCKET''',
|
|
cflags='-DLOCALEDIR=\"%s/locale\"' % bld.env.DATADIR,
|
|
realname='pam_smbpass.so',
|
|
)
|