mirror of https://github.com/MidnightCommander/mc
* acinclude.m4 (MC_WITH_VFS): Disable mcfs by default.
This commit is contained in:
parent
7608383a3e
commit
80bc69201d
|
@ -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.
|
||||
|
||||
|
|
12
acinclude.m4
12
acinclude.m4
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue