diff options
author | Adrian Bunk <bunk@stusta.de> | 2012-04-09 21:16:12 +0300 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2012-04-13 21:15:00 +0200 |
commit | 55cbf7ba340d91c473f57fe8e5deb8d082131b0a (patch) | |
tree | 7a2908a55bea62b7e78192ba212b759b3a7d6c57 /source4/ntvfs/sysdep/wscript_configure | |
parent | 1a8405c320f115d584a9094bf5878b8cf6d58893 (diff) | |
download | samba-55cbf7ba340d91c473f57fe8e5deb8d082131b0a.tar.gz samba-55cbf7ba340d91c473f57fe8e5deb8d082131b0a.tar.bz2 samba-55cbf7ba340d91c473f57fe8e5deb8d082131b0a.zip |
rely on sys/inotify.h for inotify
sys/inotify.h was added to glibc 2.4 in 2006.
Signed-off-by: Jeremy Allison <jra@samba.org>
Autobuild-User: Jeremy Allison <jra@samba.org>
Autobuild-Date: Fri Apr 13 21:15:00 CEST 2012 on sn-devel-104
Diffstat (limited to 'source4/ntvfs/sysdep/wscript_configure')
-rw-r--r-- | source4/ntvfs/sysdep/wscript_configure | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/source4/ntvfs/sysdep/wscript_configure b/source4/ntvfs/sysdep/wscript_configure index f1e09ddd3d..aa63000499 100644 --- a/source4/ntvfs/sysdep/wscript_configure +++ b/source4/ntvfs/sysdep/wscript_configure @@ -1,16 +1,9 @@ #!/usr/bin/env python -conf.CHECK_HEADERS('linux/inotify.h asm/unistd.h sys/inotify.h', add_headers=False) +conf.CHECK_HEADERS('sys/inotify.h', add_headers=False) -conf.CHECK_FUNCS('inotify_init') - -conf.CHECK_VARIABLE('__NR_inotify_init') conf.CHECK_DECLS('F_SETLEASE', headers='linux/fcntl.h', reverse=True) conf.CHECK_DECLS('SA_SIGINFO', headers='signal.h', reverse=True) -conf.CHECK_DECLS('__NR_inotify_init', reverse=True, headers='asm/unistd.h') - -if (conf.CONFIG_SET('HAVE___NR_INOTIFY_INIT') and - (conf.CONFIG_SET('HAVE_LINUX_INOTIFY_H') or - conf.CONFIG_SET('HAVE_SYS_INOTIFY_H'))): +if (conf.CONFIG_SET('HAVE_SYS_INOTIFY_H')): conf.DEFINE('HAVE_LINUX_INOTIFY', 1) |