Switch to unified view

a/src/configure.ac b/src/configure.ac
...
...
117
117
118
# Real time monitoring with FAM
118
# Real time monitoring with FAM
119
AC_ARG_WITH(fam, 
119
AC_ARG_WITH(fam, 
120
    AC_HELP_STRING([--with-fam],
120
    AC_HELP_STRING([--with-fam],
121
   [Use File Alteration Monitor for almost real time indexing of modified files. Give the fam/gamin library as argument (ie: /usr/lib/libfam.so) if configure does not find the right one.]),
121
   [Use File Alteration Monitor for almost real time indexing of modified files. Give the fam/gamin library as argument (ie: /usr/lib/libfam.so) if configure does not find the right one.]),
122
        withFam=$withval, withFam=no)
122
        withFam=$withval, withFam=yes)
123
123
if test X$withFam != Xno -a X$withInotify != Xno ; then
124
if test X$withFam != Xno -a X$withInotify != Xno ; then
124
   AC_MSG_NOTICE([FAM support enabled but inotify support also enabled. Disabling FAM support and using inotify])
125
   AC_MSG_NOTICE([FAM support enabled but inotify support also enabled. Disabling FAM support and using inotify])
125
   withFam=no
126
   withFam=no
126
fi
127
fi
127
128