make extended attributes support the default
This commit is contained in:
parent
e8afc66d8f
commit
4c3873798d
4
src/configure
vendored
4
src/configure
vendored
@ -1354,7 +1354,7 @@ Optional Features:
|
||||
--disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
|
||||
--enable-FEATURE[=ARG] include FEATURE [ARG=yes]
|
||||
--disable-largefile omit support for large files
|
||||
--enable-xattr Enable fetching metadata from file extended
|
||||
--disable-xattr Enable fetching metadata from file extended
|
||||
attributes. This is only useful if some application
|
||||
creates them on (part of) your data set. You also
|
||||
need to set up appropriate mappings in the
|
||||
@ -4349,7 +4349,7 @@ fi
|
||||
if test "${enable_xattr+set}" = set; then :
|
||||
enableval=$enable_xattr; xattrEnabled=$enableval
|
||||
else
|
||||
xattrEnabled=no
|
||||
xattrEnabled=yes
|
||||
fi
|
||||
|
||||
|
||||
|
||||
@ -168,11 +168,11 @@ fi
|
||||
# completely trivial: we have to use ctime instead of mtime to detect
|
||||
# changes.
|
||||
AC_ARG_ENABLE(xattr,
|
||||
AC_HELP_STRING([--enable-xattr],
|
||||
AC_HELP_STRING([--disable-xattr],
|
||||
[Enable fetching metadata from file extended attributes. This is only
|
||||
useful if some application creates them on (part of) your data set. You also
|
||||
need to set up appropriate mappings in the configuration.]),
|
||||
xattrEnabled=$enableval, xattrEnabled=no)
|
||||
xattrEnabled=$enableval, xattrEnabled=yes)
|
||||
|
||||
if test X$xattrEnabled = Xyes ; then
|
||||
AC_DEFINE(RCL_USE_XATTR, 1, [Use file extended attributes])
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user