From 943b9d3944a507d106613dbf3fa678c6a0bcbade Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Fri, 10 Jul 2009 20:10:12 -0400 Subject: Bug 22516 - Ensure inotify fd is set close on exec This prevents it leaking into spawned child processes. Signed-off-by: Colin Walters (cherry picked from commit f4e15893e5be6da6c7642bb7ef9b14d5531afe41) --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.in') diff --git a/configure.in b/configure.in index c4d0ccc3..bba68d14 100644 --- a/configure.in +++ b/configure.in @@ -754,7 +754,7 @@ fi dnl check if inotify backend is enabled if test x$have_inotify = xyes; then AC_DEFINE(DBUS_BUS_ENABLE_INOTIFY,1,[Use inotify]) - + AC_CHECK_FUNCS(inotify_init1) fi AM_CONDITIONAL(DBUS_BUS_ENABLE_INOTIFY, test x$have_inotify = xyes) -- cgit