summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorKevin McCarthy <kevin@8t8.us>2019-08-28 14:47:15 -0700
committerKevin McCarthy <kevin@8t8.us>2019-08-28 14:47:15 -0700
commitaa6d4663b6d9e169d186109a4f19680cd68074ae (patch)
tree571f2057ee0c7397e8d7c4cdd6ca859bde83df2e /configure.ac
parent2b8dc1298e6055db1b78795843347e58a32ce618 (diff)
parent4c2f7c70145e12c2605f7714c4e17d9a99e7f7e2 (diff)
Merge branch 'stable'
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac8
1 files changed, 2 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac
index 7c03844e..204ddf10 100644
--- a/configure.ac
+++ b/configure.ac
@@ -906,13 +906,9 @@ AC_ARG_ENABLE(filemonitor, AS_HELP_STRING([--disable-filemonitor],[Disable file
if test x$have_filemonitor != xno ; then
AC_CHECK_FUNCS(inotify_init1 inotify_add_watch inotify_rm_watch,
- [
- AC_DEFINE(USE_INOTIFY,1,[ Define if want to use inotify for filesystem monitoring (available in Linux only). ])
- ],
- [
- have_filemonitor=no
- ])
+ [], [have_filemonitor=no])
if test x$have_filemonitor != xno ; then
+ AC_DEFINE(USE_INOTIFY,1,[ Define if want to use inotify for filesystem monitoring (available in Linux only). ])
AC_CHECK_HEADERS(sys/inotify.h)
MUTT_LIB_OBJECTS="$MUTT_LIB_OBJECTS monitor.o"
fi