|
a/src/configure.ac |
|
b/src/configure.ac |
|
... |
|
... |
173 |
AC_DEFINE_UNQUOTED(FAM_INCLUDE, "$famBase/include/fam.h",
|
173 |
AC_DEFINE_UNQUOTED(FAM_INCLUDE, "$famBase/include/fam.h",
|
174 |
[Path to the fam api include file])
|
174 |
[Path to the fam api include file])
|
175 |
else
|
175 |
else
|
176 |
AC_MSG_ERROR([fam library not found])
|
176 |
AC_MSG_ERROR([fam library not found])
|
177 |
fi
|
177 |
fi
|
178 |
fi
|
|
|
179 |
|
|
|
180 |
# Disable use of file extended attributes. With xattrs disabled we can use
|
|
|
181 |
# mtime instead of ctime to look for file mods. Default is enabled.
|
|
|
182 |
AC_ARG_ENABLE(xattr,
|
|
|
183 |
AC_HELP_STRING([--disable-xattr],
|
|
|
184 |
[Enable fetching metadata from file extended attributes. This is only
|
|
|
185 |
useful if some application creates them on (part of) your data set. You also
|
|
|
186 |
need to set up appropriate mappings in the configuration.]),
|
|
|
187 |
xattrEnabled=$enableval, xattrEnabled=yes)
|
|
|
188 |
|
|
|
189 |
if test X$xattrEnabled = Xyes ; then
|
|
|
190 |
AC_DEFINE(RCL_USE_XATTR, 1, [Use file extended attributes])
|
|
|
191 |
fi
|
178 |
fi
|
192 |
|
179 |
|
193 |
# Enable use of threads in the indexing pipeline.
|
180 |
# Enable use of threads in the indexing pipeline.
|
194 |
# This is disabled by default as we usually care little about indexing
|
181 |
# This is disabled by default as we usually care little about indexing
|
195 |
# absolute performance (more about impact on usability and total
|
182 |
# absolute performance (more about impact on usability and total
|