1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

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
This commit is contained in:
Andrew Bartlett 2012-09-26 18:09:20 +10:00
parent 128fb54ab4
commit 968da5f890

View File

@ -4,3 +4,19 @@ 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_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') 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')