|
a/src/configure |
|
b/src/configure |
|
... |
|
... |
1267 |
case $ac_init_help in
|
1267 |
case $ac_init_help in
|
1268 |
short | recursive ) echo "Configuration of Recoll 1.6:";;
|
1268 |
short | recursive ) echo "Configuration of Recoll 1.6:";;
|
1269 |
esac
|
1269 |
esac
|
1270 |
cat <<\_ACEOF
|
1270 |
cat <<\_ACEOF
|
1271 |
|
1271 |
|
|
|
1272 |
Optional Features:
|
|
|
1273 |
--disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
|
|
|
1274 |
--enable-FEATURE[=ARG] include FEATURE [ARG=yes]
|
|
|
1275 |
--enable-xattr Enable fetching metadata from file extended
|
|
|
1276 |
attributes. This is only useful if some application
|
|
|
1277 |
creates them on (part of) your data set. You also
|
|
|
1278 |
need to set up appropriate mappings in the
|
|
|
1279 |
configuration.
|
|
|
1280 |
|
1272 |
Optional Packages:
|
1281 |
Optional Packages:
|
1273 |
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
|
1282 |
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
|
1274 |
--without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
|
1283 |
--without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
|
1275 |
--without-aspell Disable use of aspell spelling package to provide
|
1284 |
--without-aspell Disable use of aspell spelling package to provide
|
1276 |
term expansion to other spellings
|
1285 |
term expansion to other spellings
|
|
... |
|
... |
3630 |
|
3639 |
|
3631 |
else
|
3640 |
else
|
3632 |
{ echo "$as_me:$LINENO: inotify monitoring disabled" >&5
|
3641 |
{ echo "$as_me:$LINENO: inotify monitoring disabled" >&5
|
3633 |
echo "$as_me: inotify monitoring disabled" >&6;}
|
3642 |
echo "$as_me: inotify monitoring disabled" >&6;}
|
3634 |
fi
|
3643 |
fi
|
|
|
3644 |
|
|
|
3645 |
# Enable use of file extended attributes.
|
|
|
3646 |
# Not by default as these are little used for now.
|
|
|
3647 |
# Check whether --enable-xattr was given.
|
|
|
3648 |
if test "${enable_xattr+set}" = set; then
|
|
|
3649 |
enableval=$enable_xattr; xattrEnabled=$enableval
|
|
|
3650 |
else
|
|
|
3651 |
xattrEnabled=no
|
|
|
3652 |
fi
|
|
|
3653 |
|
|
|
3654 |
|
|
|
3655 |
if test X$xattrEnabled = Xyes ; then
|
|
|
3656 |
|
|
|
3657 |
cat >>confdefs.h <<\_ACEOF
|
|
|
3658 |
#define RCL_USE_XATTR 1
|
|
|
3659 |
_ACEOF
|
|
|
3660 |
|
|
|
3661 |
fi
|
|
|
3662 |
|
3635 |
|
3663 |
|
3636 |
|
3664 |
|
3637 |
for ac_func in mkdtemp
|
3665 |
for ac_func in mkdtemp
|
3638 |
do
|
3666 |
do
|
3639 |
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
3667 |
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|