2009-05-07 16:38:06 +04:00
|
|
|
dnl Enable FISH protocol (classic)
|
|
|
|
AC_DEFUN([AC_MC_VFS_FISH],
|
|
|
|
[
|
|
|
|
AC_ARG_ENABLE([vfs-fish],
|
2009-07-30 17:48:40 +04:00
|
|
|
[ --enable-vfs-fish Support for FISH vfs [[yes]]])
|
2009-05-07 16:38:06 +04:00
|
|
|
if test "x$enable_vfs_fish" != xno; then
|
|
|
|
enable_vfs_fish="yes"
|
|
|
|
AC_MC_VFS_ADDNAME([fish])
|
|
|
|
AC_DEFINE([ENABLE_VFS_FISH], [1], [Support for FISH vfs])
|
|
|
|
fi
|
2009-07-26 17:11:53 +04:00
|
|
|
AM_CONDITIONAL(ENABLE_VFS_FISH, [test x"$enable_vfs_fish" = x"yes"])
|
2009-05-07 16:38:06 +04:00
|
|
|
])
|