2009-05-07 15:38:06 +03:00
|
|
|
dnl Enable FISH protocol (classic)
|
|
|
|
AC_DEFUN([AC_MC_VFS_FISH],
|
|
|
|
[
|
|
|
|
AC_ARG_ENABLE([vfs-fish],
|
2010-07-13 17:01:25 +04:00
|
|
|
AC_HELP_STRING([--enable-vfs-fish], [Support for FISH filesystem [[yes]]]))
|
|
|
|
if test "$enable_vfs" != "no" -a "x$enable_vfs_fish" != xno; then
|
|
|
|
enable_vfs_fish="yes"
|
2009-05-07 15:38:06 +03:00
|
|
|
AC_MC_VFS_ADDNAME([fish])
|
|
|
|
AC_DEFINE([ENABLE_VFS_FISH], [1], [Support for FISH vfs])
|
|
|
|
fi
|
2009-07-26 16:11:53 +03:00
|
|
|
AM_CONDITIONAL(ENABLE_VFS_FISH, [test x"$enable_vfs_fish" = x"yes"])
|
2009-05-07 15:38:06 +03:00
|
|
|
])
|