* acinclude.m4 (MC_WITH_VFS): Disable mcfs by default.

This commit is contained in:
Pavel Roskin 2002-08-19 07:27:57 +00:00
parent 7608383a3e
commit 80bc69201d
2 changed files with 6 additions and 8 deletions

View File

@ -1,5 +1,7 @@
2002-08-19 Pavel Roskin <proski@gnu.org>
* acinclude.m4 (MC_WITH_VFS): Disable mcfs by default.
* configure.in: Enable subshell support on all operating systems
by default. Old issues are most likely solved by now.

View File

@ -96,17 +96,13 @@ AC_DEFUN([MC_WITH_VFS],[
dnl
dnl mcfs support
dnl
mcfs="mcfs"
AC_ARG_WITH(mcfs,
[--with-mcfs Support mc's private file system],[
if test "x$withval" = "xno"; then
mcfs=""
[--with-mcfs Support mc-specific networking file system],[
if test "x$withval" != "xno"; then
AC_DEFINE(WITH_MCFS, 1, [Define to enable mc-specific networking file system])
vfs_flags="$vfs_flags, mcfs"
fi
])
if test "x$mcfs" != "x"; then
AC_DEFINE(WITH_MCFS, 1, [Define to enable mc's private file system])
vfs_flags="$vfs_flags, mcfs"
fi
vfs_flags="$vfs_flags, ftpfs, fish"
use_net_code=true
fi