mirror of
https://github.com/samba-team/samba.git
synced 2025-02-23 09:57:40 +03:00
this brings the s3 waf build much closer to the proposed s3build top level build, using the same bld.SAMBA3_*() rules There are a few renames of subsystems in here, with a 3 suffix where it would create a conflict. Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
14 lines
485 B
Python
14 lines
485 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 ASN1_UTIL PARAM LIB_NONSMBD PASSDB GROUPDB SMBLDAP
|
|
LIBSAMBA LIBTSOCKET''',
|
|
cflags='-DLOCALEDIR=\"%s/locale\"' % bld.env.DATADIR,
|
|
realname='pam_smbpass.so',
|
|
)
|