|
a/src/configure.ac |
|
b/src/configure.ac |
|
... |
|
... |
109 |
AC_DEFINE(RCL_MONITOR, 1, [Real time monitoring option])
|
109 |
AC_DEFINE(RCL_MONITOR, 1, [Real time monitoring option])
|
110 |
AC_DEFINE(RCL_USE_INOTIFY, 1, [Compile the inotify interface])
|
110 |
AC_DEFINE(RCL_USE_INOTIFY, 1, [Compile the inotify interface])
|
111 |
else
|
111 |
else
|
112 |
AC_MSG_NOTICE([inotify monitoring disabled])
|
112 |
AC_MSG_NOTICE([inotify monitoring disabled])
|
113 |
fi
|
113 |
fi
|
|
|
114 |
|
|
|
115 |
# Enable use of file extended attributes.
|
|
|
116 |
# Not by default as these are little used for now.
|
|
|
117 |
AC_ARG_ENABLE(xattr,
|
|
|
118 |
AC_HELP_STRING([--enable-xattr],
|
|
|
119 |
[Enable fetching metadata from file extended attributes. This is only
|
|
|
120 |
useful if some application creates them on (part of) your data set. You also
|
|
|
121 |
need to set up appropriate mappings in the configuration.]),
|
|
|
122 |
xattrEnabled=$enableval, xattrEnabled=no)
|
|
|
123 |
|
|
|
124 |
if test X$xattrEnabled = Xyes ; then
|
|
|
125 |
AC_DEFINE(RCL_USE_XATTR, 1, [Use file extended attributes])
|
|
|
126 |
fi
|
|
|
127 |
|
114 |
|
128 |
|
115 |
AC_CHECK_FUNCS(mkdtemp)
|
129 |
AC_CHECK_FUNCS(mkdtemp)
|
116 |
|
130 |
|
117 |
##### Look for iconv. We first look for libiconv in /usr/local/lib:/usr/lib
|
131 |
##### Look for iconv. We first look for libiconv in /usr/local/lib:/usr/lib
|
118 |
## then in libc (Linux, solaris)
|
132 |
## then in libc (Linux, solaris)
|