diff options
author | Michael Heimpold <mhei@heimpold.de> | 2018-09-12 21:33:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-12 21:33:40 +0200 |
commit | bafd573d603d8a354bdffcb69813c7a97dcfabdb (patch) | |
tree | 97834c019b59daa82af85f0da3197def49924a2e | |
parent | 21c29aa2a98fb06abbc492f4c37bdf66e3ffe7d2 (diff) | |
parent | 33ed68f0511ae5daf8107018711e8b87eee93699 (diff) |
Merge pull request #7003 from dibdot/mc-vfs
mc: add VFS support by default
-rw-r--r-- | utils/mc/Config.in | 6 | ||||
-rw-r--r-- | utils/mc/Makefile | 3 |
2 files changed, 4 insertions, 5 deletions
diff --git a/utils/mc/Config.in b/utils/mc/Config.in index b2c57941b..fcd8fad33 100644 --- a/utils/mc/Config.in +++ b/utils/mc/Config.in @@ -49,11 +49,11 @@ config MC_CHARSET config MC_VFS bool "Enable virtual filesystem support" - default n + default y help This option enables the Virtual File System switch code to get transparent access to the following file systems: - cpio, tar, fish, sfs, ftp, sftp, extfs, smb. - Disabled by default. + cpio, tar, fish, sfs, ftp, sftp, extfs. + Enabled by default. endmenu diff --git a/utils/mc/Makefile b/utils/mc/Makefile index ab3ae2b68..51384798c 100644 --- a/utils/mc/Makefile +++ b/utils/mc/Makefile @@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=mc PKG_VERSION:=4.8.21 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_MAINTAINER:=Dirk Brenken <dev@brenken.org> PKG_LICENSE:=GPL-3.0+ @@ -58,7 +58,6 @@ CONFIGURE_ARGS += \ --disable-doxygen-doc \ --with-homedir=/etc/mc \ --with-screen=ncurses \ - --without-gpm-mouse \ --without-x \ CONFIGURE_VARS += \ |