From 6de10acec38eb0e5ac3f989101935ec53fac2fc0 Mon Sep 17 00:00:00 2001 From: David Disseldorp Date: Wed, 27 Nov 2013 14:04:34 +0100 Subject: build: check linux/fs.h for compression flags Needed for old distributions (e.g. SLES8), which provide a linux/fs.h without the FS_IOC_GETFLAGS/FS_COMPR_FL defines needed for the btrfs VFS module. Reported-by: Andrew Bartlett Signed-off-by: David Disseldorp Reviewed-by: Andrew Bartlett Autobuild-User(master): Andrew Bartlett Autobuild-Date(master): Wed Nov 27 18:44:14 CET 2013 on sn-devel-104 --- source3/wscript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source3') diff --git a/source3/wscript b/source3/wscript index 2edf5e8ea71..b09c2db7791 100644 --- a/source3/wscript +++ b/source3/wscript @@ -1727,7 +1727,8 @@ main() { if conf.CHECK_HEADERS('gpfs_gpl.h'): conf.DEFINE('HAVE_GPFS', '1') - if conf.CHECK_HEADERS('linux/ioctl.h sys/ioctl.h linux/fs.h'): + if (conf.CHECK_HEADERS('linux/ioctl.h sys/ioctl.h linux/fs.h') and + conf.CHECK_DECLS('FS_IOC_GETFLAGS FS_COMPR_FL', headers='linux/fs.h')): conf.DEFINE('HAVE_LINUX_IOCTL', '1') conf.env['CCFLAGS_CEPHFS'] = "-D_FILE_OFFSET_BITS=64" -- cgit