Config.in (1614B)
1 menu "Configuration" 2 depends on PACKAGE_mc 3 4 config MC_DIFFVIEWER 5 bool "Enable internal diff viewer" 6 default n 7 help 8 This option enables the built-in diff viewer. 9 Disabled by default. 10 11 config MC_EDITOR 12 bool "Enable internal editor" 13 default y 14 help 15 This option enables the built-in file editor. 16 Enabled by default. 17 18 config MC_SUBSHELL 19 bool "Enable concurrent subshell" 20 default y 21 help 22 This option enables concurrent subshell support. 23 Enabled by default. 24 25 config MC_LARGEFILE 26 bool "Enable largefile support" 27 default n 28 help 29 This option enables support for large files (> 2 GB). 30 Disabled by default. 31 32 config MC_BACKGROUND 33 bool "Enable background operations" 34 default n 35 help 36 This option enables support for background operations which 37 allow to perform some tasks such as copying files in a 38 separate background process. Background code is known 39 to be less stable than the rest of the code. 40 Disabled by default. 41 42 config MC_CHARSET 43 bool "Enable charset support" 44 default y 45 help 46 This option adds support for selecting character set of the text in 47 the internal viewer and editor and converting it on the fly. 48 Enabled by default. 49 50 config MC_VFS 51 bool "Enable virtual filesystem support" 52 default n 53 help 54 This option enables the Virtual File System switch code to get 55 transparent access to the following file systems: 56 cpio, tar, fish, sfs, ftp, sftp, extfs, smb. 57 Disabled by default. 58 59 endmenu