1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/nsswitch/wscript_configure
Andrew Bartlett 968da5f890 nsswitch: Add waf tests for solaris special cases
These are in configure.in for autoconf.  Found in the config.h comparison on
the smbtorture4 build.

Andrew Bartlett

Autobuild-User(master): Andrew Bartlett <abartlet@samba.org>
Autobuild-Date(master): Wed Sep 26 11:50:10 CEST 2012 on sn-devel-104
2012-09-26 11:50:10 +02:00

23 lines
924 B
Python

#!/usr/bin/env python
conf.CHECK_HEADERS('nss.h nss_common.h ns_api.h')
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')