Switch to unified view

a/src/configure.ac b/src/configure.ac
...
...
166
# Enable use of file extended attributes.  Not by default as extended
166
# Enable use of file extended attributes.  Not by default as extended
167
# attributes are little used for now, and looking for them is not
167
# attributes are little used for now, and looking for them is not
168
# completely trivial: we have to use ctime instead of mtime to detect
168
# completely trivial: we have to use ctime instead of mtime to detect
169
# changes.
169
# changes.
170
AC_ARG_ENABLE(xattr,
170
AC_ARG_ENABLE(xattr,
171
    AC_HELP_STRING([--enable-xattr],
171
    AC_HELP_STRING([--disable-xattr],
172
   [Enable fetching metadata from file extended attributes. This is only
172
   [Enable fetching metadata from file extended attributes. This is only
173
   useful if some application creates them on (part of) your data set. You also 
173
   useful if some application creates them on (part of) your data set. You also 
174
   need to set up appropriate mappings in the configuration.]),
174
   need to set up appropriate mappings in the configuration.]),
175
        xattrEnabled=$enableval, xattrEnabled=no)
175
        xattrEnabled=$enableval, xattrEnabled=yes)
176
176
177
if test X$xattrEnabled = Xyes ; then
177
if test X$xattrEnabled = Xyes ; then
178
  AC_DEFINE(RCL_USE_XATTR, 1, [Use file extended attributes])
178
  AC_DEFINE(RCL_USE_XATTR, 1, [Use file extended attributes])
179
fi
179
fi
180
180