mirror of
https://github.com/samba-team/samba.git
synced 2025-02-23 09:57:40 +03:00
lib/util: fix waf configure tests for xattr functions on Mac OS 10.
metze
This commit is contained in:
parent
348b4b9bab
commit
bd6d76d776
@ -6,18 +6,20 @@ conf.CHECK_FUNCS_IN('backtrace', 'execinfo', checklibc=True, headers='execinfo.h
|
||||
|
||||
conf.CHECK_FUNCS('sigprocmask sigblock sigaction')
|
||||
|
||||
conf.CHECK_FUNCS_IN('flistxattr', 'attr', checklibc=True, headers='sys/attributes.h attr/xattr.h sys/xattr.h')
|
||||
|
||||
conf.CHECK_STRUCTURE_MEMBER('struct statvfs', 'f_frsize', define='HAVE_FRSIZE', headers='sys/statvfs.h')
|
||||
xattr_headers='sys/attributes.h attr/xattr.h sys/xattr.h'
|
||||
conf.CHECK_FUNCS_IN('flistxattr', 'attr', checklibc=True, headers=xattr_headers)
|
||||
|
||||
conf.CHECK_CODE('getxattr(NULL, NULL, NULL, 0, 0, 0)',
|
||||
define='XATTR_ADDITIONAL_OPTIONS')
|
||||
headers=xattr_headers, local_include=False,
|
||||
define='XATTR_ADDITIONAL_OPTIONS',
|
||||
msg='Checking for darwin xattr api')
|
||||
|
||||
if conf.CONFIG_SET('HAVE_FLISTXATTR'):
|
||||
conf.DEFINE('HAVE_XATTR_SUPPORT', 1)
|
||||
|
||||
|
||||
|
||||
conf.CHECK_STRUCTURE_MEMBER('struct statvfs', 'f_frsize', define='HAVE_FRSIZE', headers='sys/statvfs.h')
|
||||
|
||||
# all the different ways of doing statfs
|
||||
statfs_types = [
|
||||
|
Loading…
x
Reference in New Issue
Block a user