summaryrefslogtreecommitdiff
path: root/lib/replace/wscript
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2019-10-02 14:27:41 +0200
committerAndreas Schneider <asn@cryptomilk.org>2019-10-07 11:48:24 +0000
commit222f2538636d247f6ca067e0f8a174799143b155 (patch)
treeb194a0a395ddbccd3a931cab31c9e29c7d6c59af /lib/replace/wscript
parent7c2745d41e808b7240358f5d0702dfe7abdc93a1 (diff)
downloadsamba-222f2538636d247f6ca067e0f8a174799143b155.tar.gz
replace: Improve sys/sysctl.h check to catch warning on glibc >= 2.30
Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Alexander Bokovoy <ab@samba.org> Autobuild-User(master): Andreas Schneider <asn@cryptomilk.org> Autobuild-Date(master): Mon Oct 7 11:48:24 UTC 2019 on sn-devel-184
Diffstat (limited to 'lib/replace/wscript')
-rw-r--r--lib/replace/wscript13
1 files changed, 12 insertions, 1 deletions
diff --git a/lib/replace/wscript b/lib/replace/wscript
index c9d27e13df8..e4da1a71a4c 100644
--- a/lib/replace/wscript
+++ b/lib/replace/wscript
@@ -106,7 +106,18 @@ def configure(conf):
conf.SET_TARGET_TYPE('nsl', 'SYSLIB')
conf.CHECK_HEADERS('rpcsvc/nis.h rpcsvc/ypclnt.h', lib='tirpc nsl')
- conf.CHECK_HEADERS('sys/sysctl.h')
+ # This file is decprecated with glibc >= 2.30 so we need to check if it
+ # includes a deprecation warning:
+ # #warning "The <sys/sysctl.h> header is deprecated and will be removed."
+ conf.CHECK_CODE('''
+ #include <sys/sysctl.h>
+ int main(void) { return 0; }
+ ''',
+ define='HAVE_SYS_SYSCTL_H',
+ cflags=['-Werror=cpp'],
+ addmain=False,
+ msg='Checking for header sys/sysctl.h')
+
conf.CHECK_HEADERS('sys/fileio.h sys/filesys.h sys/dustat.h sys/sysmacros.h')
conf.CHECK_HEADERS('xfs/libxfs.h netgroup.h')