dnl --------------------------------------------------
dnl plugin support
dnl --------------------------------------------------
-use_plugins=yes
+have_plugins=yes
AC_ARG_ENABLE(plugins,
AC_HELP_STRING([--enable-plugins], [enable plugin support @<:@default=yes@:>@]),
[
if test x$enableval = xno; then
- use_plugins=no
+ have_plugins=no
fi
]
)
-if test "x$use_libtool" != "xyes" -a test "x$use_plugins" = "xyes"; then
+if test "x$use_libtool" != "xyes" -a test "x$have_plugins" = "xyes"; then
echo " "
echo "You specified --enable-plugins but disabled libtool with --disable-libtool"
echo "We only support plugins using libtool so either disable plugins or enable libtool"
fi
FD_PLUGIN_DIR=""
-if test "x$use_plugins" = "xyes" ; then
+if test "x$have_plugins" = "xyes" ; then
FD_PLUGIN_DIR="src/plugins/fd"
fi
AC_SUBST(FD_PLUGIN_DIR)
client-only: ${build_client_only}
build-dird: ${build_dird}
build-stored: ${build_stored}
+ Plugin support: ${have_plugins}
ACL support: ${have_acl}
XATTR support: ${have_xattr}
Python support: ${support_python} ${PYTHON_LIBS}