|
a/src/configure |
|
b/src/configure |
|
... |
|
... |
4231 |
|
4231 |
|
4232 |
|
4232 |
|
4233 |
$as_echo "#define RCL_USE_INOTIFY 1" >>confdefs.h
|
4233 |
$as_echo "#define RCL_USE_INOTIFY 1" >>confdefs.h
|
4234 |
|
4234 |
|
4235 |
else
|
4235 |
else
|
4236 |
{ $as_echo "$as_me:${as_lineno-$LINENO}: inotify monitoring disabled" >&5
|
4236 |
{ $as_echo "$as_me:${as_lineno-$LINENO}: inotify not found, inotify monitoring disabled" >&5
|
4237 |
$as_echo "$as_me: inotify monitoring disabled" >&6;}
|
4237 |
$as_echo "$as_me: inotify not found, inotify monitoring disabled" >&6;}
|
4238 |
fi
|
4238 |
fi
|
4239 |
|
4239 |
|
4240 |
# Real time monitoring with FAM
|
4240 |
# Real time monitoring with FAM
|
4241 |
|
4241 |
|
4242 |
# Check whether --with-fam was given.
|
4242 |
# Check whether --with-fam was given.
|
|
... |
|
... |
4251 |
{ $as_echo "$as_me:${as_lineno-$LINENO}: FAM support enabled but inotify support also enabled. Disabling FAM support and using inotify" >&5
|
4251 |
{ $as_echo "$as_me:${as_lineno-$LINENO}: FAM support enabled but inotify support also enabled. Disabling FAM support and using inotify" >&5
|
4252 |
$as_echo "$as_me: FAM support enabled but inotify support also enabled. Disabling FAM support and using inotify" >&6;}
|
4252 |
$as_echo "$as_me: FAM support enabled but inotify support also enabled. Disabling FAM support and using inotify" >&6;}
|
4253 |
withFam=no
|
4253 |
withFam=no
|
4254 |
fi
|
4254 |
fi
|
4255 |
|
4255 |
|
|
|
4256 |
famLib=""
|
4256 |
case $withFam in
|
4257 |
case $withFam in
|
4257 |
no);;
|
4258 |
no);;
|
4258 |
yes)
|
4259 |
yes)
|
4259 |
for dir in /usr/local/lib ${libdir};do
|
4260 |
for dir in /usr/local/lib ${libdir};do
|
4260 |
if test -f $dir/libfam.so ; then famLib=$dir/libfam.so;break;fi
|
4261 |
if test -f $dir/libfam.so ; then famLib=$dir/libfam.so;break;fi
|
4261 |
done
|
4262 |
done
|
|
|
4263 |
if test X$famLib = X ; then
|
|
|
4264 |
{ $as_echo "$as_me:${as_lineno-$LINENO}: FAM library not found, disabling FAM and real time indexing support" >&5
|
|
|
4265 |
$as_echo "$as_me: FAM library not found, disabling FAM and real time indexing support" >&6;}
|
|
|
4266 |
withFam=no
|
|
|
4267 |
fi
|
4262 |
;;
|
4268 |
;;
|
4263 |
*) # The argument should be the path to the fam library
|
4269 |
*) # The argument should be the path to the fam library
|
4264 |
famLib=$withFam
|
4270 |
famLib=$withFam
|
4265 |
;;
|
4271 |
;;
|
4266 |
esac
|
4272 |
esac
|