1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00
samba-mirror/nsswitch/wscript_configure

32 lines
1.4 KiB
Plaintext
Raw Normal View History

#!/usr/bin/env python
2010-03-19 12:06:33 +03:00
conf.CHECK_HEADERS('nss.h nss_common.h ns_api.h')
2010-03-23 16:32:23 +03:00
conf.CHECK_HEADERS('security/pam_appl.h security/pam_modules.h pam/pam_modules.h', together=True)
conf.CHECK_FUNCS_IN('pam_start', 'pam', checklibc=True, headers='security/pam_appl.h')
# Solaris 10 does have new member in nss_XbyY_key
conf.CHECK_STRUCTURE_MEMBER('union nss_XbyY_key', 'ipnode.af_family',
define='HAVE_NSS_XBYY_KEY_IPNODE',
headers='nss_dbdefs.h')
# Solaris has some extra fields in struct passwd that need to be
# initialised otherwise nscd crashes.
conf.CHECK_STRUCTURE_MEMBER('struct passwd', 'pw_comment',
define='HAVE_PASSWD_PW_COMMENT',
headers='pwd.h')
conf.CHECK_STRUCTURE_MEMBER('struct passwd', 'pw_age',
define='HAVE_PASSWD_PW_AGE',
headers='pwd.h')
# AIX 4.3.x and 5.1 do not have as many members in
# struct secmethod_table as AIX 5.2
conf.CHECK_STRUCTURE_MEMBER('struct secmethod_table', 'method_attrlist',
define='HAVE_STRUCT_SECMETHOD_TABLE_METHOD_ATTRLIST',
headers='usersec.h')
conf.CHECK_STRUCTURE_MEMBER('struct secmethod_table', 'method_version',
define='HAVE_STRUCT_SECMETHOD_TABLE_METHOD_VERSION',
headers='usersec.h')