INSTALL 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453
  1. This file contains:
  2. - Build requirements for GNU Midnight Commander
  3. - Installation instructions for GNU Midnight Commander
  4. - Where to get more information on GNU Midnight Commander
  5. - Notes about GNU Midnight Commander installation
  6. - Obtaining related software
  7. Build requirements for GNU Midnight Commander
  8. ----------------------------------------------------
  9. - glibc
  10. - gcc
  11. - make
  12. - autoconf >= 2.64
  13. - automake >= 1.12
  14. - libtool
  15. - glib2 >= 2.32
  16. - slang2 or ncurses
  17. - gettext >= 0.18.2
  18. - libssh2 >= 1.2.8 is required only for sftp vfs
  19. - libaspell to support spell checking in the internal editor
  20. - ext2fs >= 1.42.4 to support ext{2,3,4}fs extended attributes
  21. Installation instructions for GNU Midnight Commander
  22. ----------------------------------------------------
  23. The `configure' shell script attempts to guess correct values for
  24. various system-dependent variables used during compilation, and creates
  25. the makefiles. It also creates a file `config.status' that you can run
  26. in the future to recreate the current configuration.
  27. To compile this package:
  28. 1. Configure the package for your system.
  29. Normally, you just `cd' to the directory containing the package's source
  30. code and type `./configure'. If you're using `csh' on an old version of
  31. SystemV, you might need to type `sh configure' instead to prevent `csh'
  32. from trying to execute `configure' itself. Under AIX, you may need to
  33. use ksh instead of sh.
  34. Running `configure' takes a while. While it is running, it prints some
  35. messages that tell what it is doing. If you don't want to see any
  36. messages, run `configure' with the `--quiet' option.
  37. To compile the package in a different directory than the one containing
  38. the source code, you must use a version of `make' supporting the `VPATH'
  39. variable, such as GNU `make'. Change to the directory where you want
  40. the object files and executables to go and run the `configure' script
  41. with the full path. If for some reason `configure' cannot find the
  42. source code directory, run `configure' with the option `--srcdir=DIR',
  43. where DIR is the directory that contains the source code.
  44. By default, `make install' will install the package's files in
  45. `/usr/local/bin', `/usr/local/man', etc. You can specify an
  46. installation prefix other than `/usr/local' by giving `configure' the
  47. option `--prefix=PATH'.
  48. You can specify separate installation prefixes for architecture specific
  49. files and architecture-independent files. If you give `configure' the
  50. option `--exec-prefix=PATH', the package will use PATH as the prefix for
  51. installing binary programs and libraries. Data files and documentation
  52. will still use the regular prefix. Normally, all files are installed
  53. using the same prefix.
  54. If compiled on GNU/Linux, Midnight Commander detects if you have the gpm
  55. library installed. If you installed the gpm mouse library in a
  56. non-standard place, you will need to use the --with-gpm-mouse flag with
  57. the directory base where you installed the gpm package.
  58. `configure' recognizes the following options (the list may be
  59. incomplete, use `configure --help' to get the full list):
  60. `--help'
  61. Print a summary of the options to `configure' and exit.
  62. `--quiet'
  63. `--silent'
  64. Do not print messages saying which checks are being made.
  65. `--version'
  66. Print the version of Autoconf used to generate the `configure'
  67. script, and exit.
  68. `--without-edit'
  69. Configure GNU Midnight Commander to be compiled without the
  70. built-in file editor. The built-in editor is compiled in by
  71. default.
  72. `--enable-aspell'
  73. This option adds spell check support in the internal editor using
  74. libaspell. Disabled by default.
  75. `--without-gpm-mouse'
  76. Use this flag to disable gpm mouse support (e.g. if you want to
  77. use mouse only on X terminals).
  78. `--with-glib-static'
  79. Force linking against glib statically. This option is intended for
  80. building binaries for distribution purposes and may not work on
  81. some operating systems.
  82. `--with-mmap', `--without-mmap'
  83. Force using or not using the mmap function. It is currently used
  84. in the internal viewer. `--with-mmap' may be useful on some
  85. versions of AIX where the `configure' script decides that mmap is
  86. broken, but it's actually suitable for the internal viewer.
  87. `--with-subshell[=optional]', `--without-subshell'
  88. The subshell support is by default turned on, you can disable
  89. this by using the --without-subshell option. If you pass the
  90. =optional parameter, then the subshell support is turned off by
  91. default. To turn it on, specify the `-U' option to the program.
  92. `--without-x'
  93. By default, the Midnight Commander tries to connect to the X Window
  94. System events to query the status of the keyboard modifiers, such
  95. as Control, Shift and Alt, when invoked in a terminal emulator
  96. under X11. This is necessary (but not always sufficient) to
  97. recognize some optional but handy key combinations like Ctrl-Home
  98. and Shift-Cursor keys. Use `--without-x' if the dependency on
  99. X11 libraries is not desired.
  100. `--disable-largefile'
  101. This option disables support for large files (2 gigabytes and more)
  102. on the systems where file operations use 32-bit offsets by default,
  103. but support for 64-bit offsets is available. May be useful for
  104. slow processors and embedded systems.
  105. `--enable-charset'
  106. This option adds support for selecting character set of the text in
  107. the internal viewer and editor and converting it on the fly. The
  108. implementation of this option is currently incomplete.
  109. `--disable-background'
  110. This option disables support for background operations. Background
  111. operations allow to perform some tasks such as copying files in a
  112. separate background process. Any messages from the background
  113. process are forwarded to the foreground process. More advanced
  114. dialogs cannot be forwarded yet, so the background process uses the
  115. default. Background code is known to be less stable than the rest
  116. of the code, so you may want to disable it at the compile time.
  117. `--with-homedir'
  118. This option allow users to place user config directories in any
  119. place. By default value is 'XDG', this mean, mc will respect XDG
  120. standards. If other value is specified, this will used as directory
  121. name (relative to $HOME if path is relative, or as is if path is
  122. absolute).
  123. VFS options:
  124. - - - - - -
  125. `--disable-vfs'
  126. This option disables the Virtual File System switch code in the
  127. Midnight Commander and uses the standard file system calls for
  128. file access. If you specify this option, you won't get the
  129. transparent access to archives and remote directories.
  130. `--enable-vfs-cpio'
  131. (on by default)
  132. Support for cpio filesystem
  133. `--enable-vfs-tar'
  134. (on by default)
  135. Support for tar filesystem
  136. `--enable-vfs-ftp'
  137. (on by default)
  138. Support for FTP vfs
  139. `--enable-vfs-shell'
  140. (on by default)
  141. Support for SHELL vfs
  142. `--enable-vfs-sftp'
  143. (auto)
  144. Support for SFTP vfs
  145. `--enable-vfs-extfs'
  146. (on by default)
  147. Support for extfs
  148. `--enable-vfs-sfs`
  149. (on by default)
  150. Support for sfs
  151. `--enable-vfs-undelfs'
  152. (off by default)
  153. Support for ext2 undelete filesystem.
  154. On systems that use the ext2 or ext3 file system and have the
  155. libext2fs library available, this option adds support for
  156. recovering deleted files (the undel virtual file system).
  157. Screen library:
  158. - - - - - - - -
  159. You may also tell configure which screen library you want to use with
  160. the Midnight Commander. The configure script will use S-Lang as
  161. default, and prefers an already installed S-Lang library over the
  162. included one, but you can override this by using the following flag
  163. (please note that since S-Lang is default, it is tested better than
  164. ncurses):
  165. `--with-screen={slang|ncurses}'
  166. Choose the library used to manage interaction with the terminal.
  167. `slang' means S-Lang library already installed on the system,
  168. `ncurses' means ncurses library already installed on the system.
  169. The S-Lang library is used by default if found.
  170. `--with-ncurses-includes=[DIR]'
  171. Set path to ncurses includes [default=/usr/include]; make
  172. sense only if --with-screen=ncurses is used;
  173. for /usr/local/include/ncurses specify /usr/local/include.
  174. `--with-ncurses-libs=[DIR]'
  175. Set path to ncurses library [default=/usr/lib]; make sense
  176. only if --with-screen=ncurses is used.
  177. Compiler options:
  178. - - - - - - - - -
  179. On systems that require unusual options for compilation or linking that
  180. the package's `configure' script does not know about, you can give
  181. `configure' initial values for variables by placing them in the command
  182. line:
  183. ./configure CC='gcc -traditional' LIBS=-lposix
  184. Here are the variables that you might want to override when running
  185. `configure'.
  186. - Variable: CC
  187. C compiler program. The default is `gcc' if found, otherwise `cc'.
  188. - Variable: CFLAGS
  189. The default flags used to build the program.
  190. - Variable: INSTALL
  191. Program to use to install files. The default is `install' if you
  192. have it, `cp' otherwise.
  193. For these variables, any value given in the command line is added to the
  194. value that `configure' decides to use:
  195. - Variable: LIBS
  196. Libraries to link with, in the form `-lfoo -lbar...'.
  197. - Variable: LDFLAGS
  198. Linker flags, e.g. -L<lib dir> if you have libraries in a
  199. nonstandard directory <lib dir>
  200. - Variable: CPPFLAGS
  201. C/C++ preprocessor flags, e.g. -I<include dir> if you have
  202. headers in a nonstandard directory <include dir>
  203. If you need to do unusual things to compile the package, we encourage
  204. you to figure out how `configure' could check whether to do them, and
  205. mail diffs or instructions to the address given in the README so we can
  206. include them in the next release.
  207. 2. Type `make' to compile the package.
  208. 3. Type `make install' to install programs, data files, and the
  209. documentation. On GNU/Linux the console screen saver is installed as
  210. well.
  211. 4. You can remove the program binaries and object files from the source
  212. directory by typing `make clean'. If you want to clean the source tree
  213. completely, so that it contains only those files that should be packaged
  214. in the archive, issue `make distclean'. If you've run configure in a
  215. different directory than the source tree, distclean won't remove your
  216. *.o and linked programs in that directory.
  217. 5. GNU Midnight Commander allows you to stay in the last current
  218. directory after exiting MC. This is done with a shell function, the man
  219. page has more information about this.
  220. The file `configure.in' is used to create `configure' by a program
  221. called `autoconf'. You only need it if you want to regenerate
  222. `configure' using a newer version of `autoconf'.
  223. Where to get more information on GNU Midnight Commander
  224. -------------------------------------------------------
  225. There are two mailing lists for the program:
  226. mc@lists.midnight-commander.org: Discussion on GNU Midnight Commander file manager.
  227. mc-devel@lists.midnight-commander.org: Discussion between the developers of the program.
  228. To subscribe to the mailing lists, visit their respective pages:
  229. https://lists.midnight-commander.org/mailman/listinfo/mc/
  230. https://lists.midnight-commander.org/mailman/listinfo/mc-devel/
  231. Notes about GNU Midnight Commander installation
  232. -----------------------------------------------
  233. GNU Midnight Commander has been run in the following configurations:
  234. i386-*-linux
  235. sparc-*-linux
  236. alpha-*-linux
  237. powerpc-*-linux
  238. mips-dec-{open,net}bsd1.0
  239. mips-sgi-irix5.2
  240. mips-sgi-irix5.3
  241. powerpc-ibm-aix5.3.0.0 (IBM XL C, IBM XL C/C++)
  242. sparc-sun-sunos4.1
  243. sparc-sun-netbsd1.0
  244. sparc-sun-solaris2.3
  245. hppa-hp-hpux9
  246. hppa-hp-hpux7
  247. m68k-apple-aux
  248. mc88110-aviion-dgux5.4
  249. i386-*-bsdi2
  250. i386-*-freebsd4.3
  251. i386-*-openbsd2.9
  252. Midnight Commander is written in a portable manner and uses GNU Autoconf
  253. for configuration, so it is expected to compile without changes on many
  254. other operating systems.
  255. You will need an ANSI C Compiler (such as GCC) and glib library to
  256. compile the source. GNU Midnight Commander now comes with the S-Lang
  257. screen manager, a fast screen manager, but you may want to use the
  258. already installed S-Lang or ncurses library.
  259. If you insist on using ncurses, it's recommended to use ncurses 4.1 and
  260. above, since the older versions don't support resizing in the xterm
  261. window.
  262. GNU Midnight Commander comes with the mouse support on xterms and in the
  263. Linux console. In order to take advantage of the mouse support on the
  264. Linux console you will need the gpm mouse server (see the section
  265. "Obtaining related software" in this file).
  266. Once you get gpm, compile it and install it, then you will have to
  267. specify the `--with-gpm-mouse' flag to the configure program if you
  268. installed it in a non-standard directory. If you installed the gpm
  269. package under /usr or /usr/local, you don't need to specify this flag;
  270. configure will find gpm for you. The support for mice on xterms is
  271. always compiled in.
  272. We are working on further enhancements to the program, but we're not
  273. sure which ones must go first. If you would like to point us in the
  274. Right Direction we will be glad to hear from you.
  275. If you happen to find a feature that doesn't do what you expect, please
  276. write to mc@lists.midnight-commander.org telling as much as you can
  277. about the problem you're experiencing. Please don't send personal
  278. messages to the maintainers.
  279. Obtaining related software
  280. --------------------------
  281. glib
  282. ----
  283. The only "hard" dependency of GNU Midnight Commander is glib. You can
  284. get glib from
  285. ftp://ftp.gnome.org/pub/gnome/sources/glib/
  286. Minimal version of glib: 2.32.0
  287. Recommended version: 2.32.x and higher.
  288. Newer versions may work, but haven't been tested.
  289. PCRE
  290. ----
  291. Both PCRE and PCRE2 libraries are supported.
  292. You can get PCRE from
  293. http://www.pcre.org/
  294. Terminal database
  295. -----------------
  296. There are many incomplete terminal databases out there, however, a
  297. complete terminfo is bundled with ncurses. (It is simple to generate
  298. the termcap database using the infocmp utility in ncurses).
  299. Some terminfo data are included with the mc distribution (lib/*.ti).
  300. Particularly linux, xterm and vt100. Use e.g. ''tic linux.ti'' to use
  301. them.
  302. If you want to run mc on xterm/color_xterm/ansi_xterm (not rxvt), then
  303. you might read lib/README.xterm for further information.
  304. Screen libraries
  305. ----------------
  306. GNU Midnight Commander can use the included version of S-Lang, but you
  307. can get the latest version here:
  308. http://www.s-lang.org/
  309. Alternatively, you can use ncurses:
  310. http://www.gnu.org/software/ncurses/ncurses.html
  311. Mouse support
  312. -------------
  313. The general purpose mouse (gpm) daemon is available from
  314. http://unix.schottelius.org/gpm/
  315. Compiler
  316. --------
  317. If your C compiler is not powerful enough to compile GNU Midnight
  318. Commander, you should report is as a bug to the GNU Midnight Commander
  319. team. Sometimes there is no solution than upgrading to a modern and
  320. free compiler - GCC (Compiler Collection):
  321. http://gcc.gnu.org/
  322. AIX
  323. ---
  324. Currently you can not use gcc 4.2.4 (and probably other versions) on
  325. AIX to compile the S-Lang version. Please use IBM XL C or IBM XL C/C++
  326. instead.
  327. If you compile a ncurses version you need to set TERM=dtterm to get
  328. working color support. Furthermore it is important to specify the
  329. --with-ncurses-includes/--with-ncurses-lib parameters because otherwise
  330. mc will pick up term.h from AIX which does not work with the ncurses
  331. library.
  332. The AIX S-Lang build was tested with S-Lang 2.0.7. Later versions may
  333. also work but are not tested yet.
  334. Here is an example for S-Lang, it is assumed that the S-Lang library
  335. is installed under /user/local and that you also want want to install
  336. to /usr/local:
  337. export CC=cc_r
  338. export CXX=xlC_r
  339. export CONFIG_SHELL=/usr/bin/bash (if installed)
  340. export SHELL=/usr/bin/bash (if installed)
  341. ./configure \
  342. --prefix=/usr/local \
  343. --with-screen=slang