summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2008-12-12 20:13:58 +0100
committerLennart Poettering <lennart@poettering.net>2008-12-12 20:13:58 +0100
commitabc3a9efd1124d74155c6a70798d10710b20786d (patch)
treeadd7e6c3154de0110828483eb2f54399fc996b5b /configure.ac
parentca05343f045a05f52141c920a53812c565d9d66c (diff)
Drop private inotify code
Quoting Adrian Bunk: "avahi-daemon ships with the contents of linux/inotify.h plus #define's for the syscall numbers. The latter are #if 0'ed. I'm not sure whether this setup could work at all with some kernel headers and glibc version, but considering that glibc already provides sys/inotify.h for some time it's IMHO time to drop the private inotify code." Original patch from Adrian Bunk. Closes #243.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac1
1 files changed, 0 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index ce365b4..8c41f6b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -387,7 +387,6 @@ fi
AM_CONDITIONAL(HAVE_DLOPEN, test "x$HAVE_DLOPEN" = "xyes")
have_inotify=no
-AC_CHECK_HEADERS([linux/inotify.h], [have_inotify=yes])
AC_CHECK_HEADERS([sys/inotify.h], [have_inotify=yes])
AM_CONDITIONAL(HAVE_INOTIFY, test "x$have_inotify" = "xyes")