From 6b587d74d906638bc3a279a2ed039081a6b0b958 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Wed, 23 Feb 2011 12:29:24 +0100 Subject: s3-waf: start adding checks for quota support. Guenther --- source3/wscript | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/source3/wscript b/source3/wscript index b77a46e695..90a541ba95 100644 --- a/source3/wscript +++ b/source3/wscript @@ -1487,6 +1487,14 @@ main() { conf.CHECK_FUNCS_IN('getspnam', 'security') conf.CHECK_FUNCS_IN('getspnam', 'sec') + if Options.options.with_quotas: + # For quotas on Veritas VxFS filesystems + conf.CHECK_HEADERS('sys/fs/vx_quota.h') + # For quotas on Linux XFS filesystems + conf.CHECK_HEADERS('linux/dqblk_xfs.h') + # For sys/quota.h and linux/quota.h + conf.CHECK_HEADERS('sys/quota.h') + default_static_modules=TO_LIST('''pdb_smbpasswd pdb_tdbsam pdb_wbc_sam auth_sam auth_unix auth_winbind auth_wbc auth_server auth_domain auth_builtin vfs_default -- cgit