From b3f76482d250511ddf3b75f276c48c51db939691 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Wed, 16 Feb 2011 16:42:33 +0100 Subject: s3-waf: add check for "struct dirent64". Guenther --- source3/wscript | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source3') diff --git a/source3/wscript b/source3/wscript index 78aad61657..bbb25eeedc 100644 --- a/source3/wscript +++ b/source3/wscript @@ -1001,6 +1001,10 @@ int i; i = PAM_RADIO_TYPE; ''', 'HAVE_LINUX_RTNETLINK_H', msg='Checking whether Linux rtnetlink is available') + if conf.CHECK_TYPE('struct dirent64', headers='sys/types.h dirent.h') and conf.CONFIG_SET('HAVE_READDIR64'): + conf.DEFINE('HAVE_STRUCT_DIRENT64', '1') + else: + conf.undefine('HAVE_STRUCT_DIRENT64') default_static_modules=TO_LIST('''pdb_smbpasswd pdb_tdbsam pdb_wbc_sam auth_sam auth_unix auth_winbind auth_wbc auth_server -- cgit