configure.ac 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645
  1. dnl
  2. dnl Configure.in file for the Midnight Commander
  3. dnl
  4. AC_INIT([GNU Midnight Commander], [], [mc-devel@gnome.org])
  5. AC_PREREQ(2.60)
  6. m4_pattern_forbid(MC_)
  7. AC_CONFIG_SRCDIR(src/main.c)
  8. AC_CONFIG_AUX_DIR(config)
  9. AM_INIT_AUTOMAKE(mc, 4.6.2)
  10. AM_CONFIG_HEADER(config.h)
  11. AM_MAINTAINER_MODE
  12. AC_CANONICAL_HOST
  13. AC_USE_SYSTEM_EXTENSIONS
  14. AC_ISC_POSIX
  15. AC_PROG_CC_STDC
  16. dnl
  17. dnl First try glib 2.x. If it's not found, use glib 1.2.x.
  18. dnl Keep this check close to the beginning, so that the users
  19. dnl without any glib won't have their time wasted by other checks.
  20. dnl
  21. AC_ARG_WITH(glib12,
  22. [ --with-glib12 Force using glib 1.2.x [[no]]])
  23. AC_ARG_WITH([glib_static],
  24. [ --with-glib-static Link glib statically [[no]]])
  25. glib_found=no
  26. if test "x$with_glib12" != "xyes"; then
  27. PKG_CHECK_MODULES(GLIB, [glib-2.0], [glib_found=yes], [:])
  28. fi
  29. dnl Fall back to glib-1.2, don't use pkgconfig to find it.
  30. if test "x$glib_found" != "xyes" ; then
  31. dnl This temporary variable is a workaround for a bug in Autoconf-2.53
  32. glib_path=$PATH:/usr/local/bin
  33. dnl Klugde for FreeBSD, where glib-config is renamed to glib12-config.
  34. AC_PATH_PROGS([GLIB_CONFIG], [glib-config glib12-config],,[$glib_path])
  35. AC_ARG_VAR([GLIB_CONFIG], [Path to glib-config (version 1.2.x only)])
  36. AM_PATH_GLIB(1.2.6, , [AC_MSG_ERROR([Test for glib failed.
  37. GNU Midnight Commander requires glib 1.2.6 or above.])])
  38. dnl Save GLIB_CFLAGS and GLIB_LIBS, since the following call to
  39. dnl AM_PATH_GLIB will overwrite them.
  40. save_GLIB_CFLAGS="$GLIB_CFLAGS"
  41. save_GLIB_LIBS="$GLIB_LIBS"
  42. dnl Check for gmodule. Store the flags necessary to compile and
  43. dnl link programs using gmodule functionality in GMODULE_CFLAGS
  44. dnl and GMODULE_LIBS.
  45. AM_PATH_GLIB(1.2.6, [gmodule_found=yes], , [gmodule])
  46. GMODULE_CFLAGS="$GLIB_CFLAGS"
  47. GMODULE_LIBS="$GLIB_LIBS"
  48. GLIB_CFLAGS="$save_GLIB_CFLAGS"
  49. GLIB_LIBS="$save_GLIB_LIBS"
  50. GLIB_LIBDIR="`$GLIB_CONFIG --exec-prefix`/lib"
  51. dnl Used in src/glibcompat.c
  52. AC_CHECK_FUNCS([strlcpy])
  53. else
  54. PKG_CHECK_MODULES(GMODULE, [gmodule-2.0], [gmodule_found=yes])
  55. GLIB_LIBDIR="`$PKG_CONFIG --variable=libdir glib-2.0`"
  56. fi
  57. if test "x$gmodule_found" = "xyes" ; then
  58. dnl Check if the gmodule functionality supported on this system.
  59. AC_G_MODULE_SUPPORTED
  60. fi
  61. AC_HEADER_MAJOR
  62. AC_C_CONST
  63. AC_SYS_LARGEFILE
  64. AC_PROG_LN_S
  65. AC_CHECK_TOOL(AR, ar, ar)
  66. dnl Only list browsers here that can be run in background (i.e. with `&')
  67. AC_CHECK_PROGS(X11_WWW, [gnome-moz-remote mozilla konqueror opera netscape])
  68. dnl
  69. dnl Ovverriding mmap support. This has to be before AC_FUNC_MMAP is used.
  70. dnl We use only part of the functionality of mmap, so on AIX,
  71. dnl it's possible to use mmap, even if it doesn't pass the autoconf test.
  72. dnl
  73. AC_ARG_WITH(mmap,
  74. [ --with-mmap Use the mmap call [[yes if found]]])
  75. if test x$with_mmap != xno; then
  76. if test x$with_mmap = x; then
  77. AC_FUNC_MMAP
  78. else
  79. AC_DEFINE(HAVE_MMAP, 1)
  80. fi
  81. fi
  82. dnl
  83. dnl Internationalization
  84. dnl
  85. AM_GNU_GETTEXT(no-libtool, need-ngettext)
  86. AM_GNU_GETTEXT_VERSION(0.14.3)
  87. if test "x$USE_INCLUDED_LIBINTL" = xyes; then
  88. CPPFLAGS="$CPPFLAGS -I\$(top_builddir)/intl -I\$(top_srcdir)/intl"
  89. fi
  90. dnl Determine which help translations we want to install.
  91. ALL_DOC_LINGUAS="es hu it pl ru sr"
  92. DOC_LINGUAS=
  93. if test "x$USE_NLS" = xyes; then
  94. if test -z "$LINGUAS"; then
  95. langs="`grep -v '^#' $srcdir/po/LINGUAS`"
  96. else
  97. langs="$LINGUAS"
  98. fi
  99. else
  100. langs=
  101. fi
  102. for h_lang in $ALL_DOC_LINGUAS; do
  103. for lang in $langs; do
  104. if test "$lang" = "$h_lang"; then
  105. DOC_LINGUAS="$DOC_LINGUAS $lang"
  106. break
  107. fi
  108. done
  109. done
  110. AC_SUBST(DOC_LINGUAS)
  111. dnl
  112. dnl OS specific flags.
  113. dnl
  114. case $host_os in
  115. aux*)
  116. # A/UX
  117. LIBS="$LIBS -lposix"
  118. AC_DEFINE(_POSIX_SOURCE)
  119. ;;
  120. esac
  121. dnl Extended Character Sets
  122. dnl
  123. AC_ARG_ENABLE([extcharset],
  124. AC_HELP_STRING([--enable-extcharset], [Enable extended character sets]))
  125. if test x"$enable_extcharset" = x"yes"; then
  126. AC_DEFINE([EXTCHARSET_ENABLED], 1, [Enable extended character sets?])
  127. fi
  128. AC_PROG_INSTALL
  129. AC_CHECK_HEADERS([unistd.h string.h memory.h grp.h limits.h malloc.h \
  130. stdlib.h termios.h utime.h fcntl.h pwd.h sys/statfs.h sys/time.h \
  131. sys/timeb.h sys/select.h sys/ioctl.h stropts.h arpa/inet.h \
  132. security/pam_misc.h sys/socket.h sys/sysmacros.h sys/types.h \
  133. sys/mkdev.h wchar.h wctype.h])
  134. AC_HEADER_TIME
  135. AC_HEADER_SYS_WAIT
  136. AC_HEADER_DIRENT
  137. AC_HEADER_STDC
  138. dnl Missing structure components
  139. AC_CHECK_MEMBERS([struct stat.st_blksize, struct stat.st_rdev])
  140. AC_STRUCT_ST_BLOCKS
  141. dnl
  142. dnl Check availability of some functions
  143. dnl
  144. AC_CHECK_FUNCS([\
  145. atoll \
  146. cfgetospeed \
  147. getegid geteuid getgid getsid getuid \
  148. initgroups isascii \
  149. memcpy memmove memset \
  150. putenv \
  151. setreuid setuid statfs strerror strftime sysconf \
  152. tcgetattr tcsetattr truncate \
  153. ])
  154. dnl S-Lang needs all four functions to be defined to use POSIX signal API
  155. AC_CHECK_FUNCS([sigaction sigemptyset sigprocmask sigaddset], , [slang_signals=no])
  156. if test x$slang_signals != xno; then
  157. AC_DEFINE(SLANG_POSIX_SIGNALS, 1, [Define to use POSIX signal API in S-Lang])
  158. fi
  159. dnl
  160. dnl getpt is a GNU Extension (glibc 2.1.x)
  161. dnl
  162. AC_CHECK_FUNCS(posix_openpt, , [AC_CHECK_FUNCS(getpt)])
  163. AC_CHECK_FUNCS(grantpt, , [AC_CHECK_LIB(pt, grantpt)])
  164. dnl replacing lstat with statlstat on sco makes it more portable between
  165. dnl sco clones
  166. AC_CHECK_FUNCS(statlstat)
  167. dnl
  168. dnl If running under AIX, AC_AIX does not tell us that
  169. dnl
  170. AC_MSG_CHECKING([for AIX defines])
  171. AC_EGREP_CPP(yes,
  172. [#if defined(AIX) || defined(_AIX) || defined(__aix__) || defined(aix)
  173. yes
  174. #endif
  175. ], [
  176. AC_DEFINE(IS_AIX, 1, [Define if compiling for AIX])
  177. AC_MSG_RESULT(yes)
  178. ], [AC_MSG_RESULT(no)])
  179. dnl
  180. dnl This is from GNU fileutils, check aclocal.m4 for more information
  181. dnl
  182. AC_GET_FS_INFO
  183. dnl
  184. dnl Missing typedefs and replacements
  185. dnl
  186. AC_CHECK_SIZEOF(long)
  187. AC_CHECK_SIZEOF(long long)
  188. AC_TYPE_MODE_T
  189. AC_TYPE_OFF_T
  190. AC_CHECK_SIZEOF(off_t)
  191. AC_TYPE_PID_T
  192. AC_TYPE_UID_T
  193. AC_CHECK_TYPE(nlink_t, unsigned int)
  194. AC_CHECK_TYPES([socklen_t],,,
  195. [
  196. #include <sys/types.h>
  197. #include <sys/socket.h>
  198. ])
  199. dnl This is needed for regex.c only
  200. AC_CHECK_TYPE(uintptr_t,
  201. [AC_DEFINE(HAVE_UINTPTR_T, 1,
  202. [Define if you have the `uintptr_t' type.])
  203. ])
  204. AC_FUNC_ALLOCA
  205. AC_FUNC_STRCOLL
  206. dnl
  207. dnl X11 support.
  208. dnl Used to read keyboard modifiers when running under X11.
  209. dnl
  210. AC_PATH_XTRA
  211. if test "x$no_x" = xyes; then
  212. textmode_x11_support="no"
  213. else
  214. CPPFLAGS="$CPPFLAGS $X_CFLAGS"
  215. if test "x$mc_cv_g_module_supported" = "xyes" ; then
  216. dnl Replace the contents of GLIB_CFLAGS and GLIB_LIBS with those of
  217. dnl GMODULE_CFLAGS and GMODULE_LIBS, only if X is available and gmodule
  218. dnl functionality is supported on the system. This way, mc will be
  219. dnl linked against the gmodule library only when it's really required.
  220. GLIB_CFLAGS="$GMODULE_CFLAGS"
  221. GLIB_LIBS="$GMODULE_LIBS"
  222. else
  223. MCLIBS="$X_LIBS $X_PRE_LIBS -lX11 $X_EXTRA_LIBS"
  224. fi
  225. AC_DEFINE(HAVE_TEXTMODE_X11_SUPPORT, 1,
  226. [Define to enable getting events from X Window System])
  227. textmode_x11_support="yes"
  228. fi
  229. dnl
  230. dnl Try to find static libraries for glib and gmodule.
  231. dnl
  232. if test x$with_glib_static = xyes; then
  233. new_GLIB_LIBS=
  234. for i in $GLIB_LIBS; do
  235. case x$i in
  236. x-lglib*)
  237. lib=glib ;;
  238. x-lgmodule*)
  239. lib=gmodule ;;
  240. *)
  241. lib=
  242. add="$i" ;;
  243. esac
  244. if test -n "$lib"; then
  245. lib1=`echo $i | sed 's/^-l//'`
  246. if test -f "$GLIB_LIBDIR/lib${lib1}.a"; then
  247. add="$GLIB_LIBDIR/lib${lib1}.a"
  248. else
  249. if test -f "$GLIB_LIBDIR/lib${lib}.a"; then
  250. add="$GLIB_LIBDIR/lib${lib}.a"
  251. else
  252. AC_MSG_ERROR([Cannot find static $lib])
  253. fi
  254. fi
  255. fi
  256. new_GLIB_LIBS="$new_GLIB_LIBS $add"
  257. done
  258. GLIB_LIBS="$new_GLIB_LIBS"
  259. fi
  260. dnl
  261. dnl Network related functions
  262. dnl
  263. AC_SEARCH_LIBS([socket], [socket])
  264. AC_SEARCH_LIBS([gethostbyname], [nsl])
  265. dnl
  266. dnl Sequent wants getprocessstats
  267. dnl
  268. AC_CHECK_LIB(seq, get_process_stats, [
  269. LIBS="$LIBS -lseq"
  270. AC_DEFINE(HAVE_GET_PROCESS_STATS, 1,
  271. [Define if you have function `get_process_stats' and
  272. have to use that instead of gettimeofday])])
  273. MC_VFS_CHECKS
  274. vfs_type="normal"
  275. if test x$use_vfs = xyes; then
  276. AC_MSG_NOTICE([enabling VFS code])
  277. vfs_type="Midnight Commander Virtual File System"
  278. fi
  279. dnl
  280. dnl Check for gpm mouse support (Linux only)
  281. dnl
  282. mouse_lib="xterm only"
  283. AC_ARG_WITH(gpm-mouse,
  284. [ --with-gpm-mouse Compile with gpm mouse support (Linux only)
  285. [[yes if found]]])
  286. case $host_os in
  287. linux*)
  288. if test x$with_gpm_mouse != xno; then
  289. AC_CHECK_LIB(gpm, Gpm_Repeat,
  290. [AC_DEFINE(HAVE_LIBGPM, 1,
  291. [Define to enable gpm mouse support on Linux])
  292. mouse_lib="gpm and xterm"
  293. MCLIBS="$MCLIBS -lgpm"],
  294. [AC_MSG_WARN([libgpm is missing or older than 0.18])
  295. ])
  296. fi
  297. ;;
  298. esac
  299. dnl
  300. dnl Check nroff and the options it supports
  301. dnl
  302. AC_CHECK_PROG(HAVE_nroff, nroff, true, false)
  303. dnl Default values
  304. MANDOC=-man
  305. MAN_FLAGS=
  306. if $HAVE_nroff; then
  307. AC_MSG_CHECKING([for manual formatting macros])
  308. AC_CACHE_VAL(mc_cv_mandoc, [
  309. nroff -mandoc < /dev/null > /dev/null 2>&1
  310. if test $? = 0; then
  311. mc_cv_mandoc=-mandoc
  312. else
  313. mc_cv_mandoc=-man
  314. fi
  315. ])
  316. MANDOC=$mc_cv_mandoc
  317. AC_MSG_RESULT([$MANDOC])
  318. AC_MSG_CHECKING([for option to disable ANSI color in manuals])
  319. AC_CACHE_VAL(mc_cv_man_nocolor, [
  320. nroff -c < /dev/null > /dev/null 2>&1
  321. if test $? = 0; then
  322. mc_cv_man_nocolor=-c
  323. else
  324. mc_cv_man_nocolor=
  325. fi
  326. ])
  327. MAN_FLAGS=$mc_cv_man_nocolor
  328. AC_MSG_RESULT([${MAN_NOCOLOR-none}])
  329. AC_MSG_CHECKING([if nroff accepts -Tlatin1 or -Tascii])
  330. AC_CACHE_VAL(mc_cv_nroff_tascii, [
  331. mc_cv_nroff_tascii=
  332. nroff -Tlatin1 < /dev/null > /dev/null 2>&1 /dev/null
  333. if test $? = 0; then
  334. mc_cv_nroff_tascii=-Tlatin1
  335. else
  336. nroff -Tascii < /dev/null > /dev/null 2>&1 /dev/null
  337. if test $? = 0; then
  338. mc_cv_nroff_tascii=-Tascii
  339. fi
  340. fi
  341. ])
  342. AC_MSG_RESULT([${mc_cv_nroff_tascii-no}])
  343. MAN_FLAGS="$MAN_FLAGS $mc_cv_nroff_tascii"
  344. fi
  345. AC_SUBST(MANDOC)
  346. AC_SUBST(MAN_FLAGS)
  347. dnl
  348. dnl Check for -L option to file
  349. dnl
  350. AC_CHECK_PROG(HAVE_FILECMD, file, true, false)
  351. if $HAVE_FILECMD; then
  352. AC_MSG_CHECKING([for -L option to file command])
  353. AC_CACHE_VAL(mc_cv_filel, [
  354. file -L . > /dev/null 2>&1
  355. if test $? = 0; then
  356. mc_cv_filel=yes
  357. else
  358. mc_cv_filel=no
  359. fi
  360. ])
  361. if test x$mc_cv_filel = xyes; then
  362. AC_DEFINE(FILE_L, 1, [Define if the file command accepts the -L option])
  363. fi
  364. filel=$mc_cv_filel
  365. AC_MSG_RESULT([$filel])
  366. fi
  367. AC_MSG_CHECKING([for subshell support])
  368. AC_ARG_WITH(subshell,
  369. [ --with-subshell Compile in concurrent subshell [[yes]]
  370. --with-subshell=optional Don't run concurrent shell by default [[no]]],
  371. [result=no
  372. if test x$withval = xoptional
  373. then
  374. AC_DEFINE(SUBSHELL_OPTIONAL, 1,
  375. [Define to make subshell support optional])
  376. result="optional"
  377. fi
  378. if test x$withval = xyes
  379. then
  380. result="yes"
  381. fi],
  382. [dnl Default: enable the subshell support
  383. result="yes"
  384. ])
  385. if test "x$result" != xno; then
  386. AC_DEFINE(HAVE_SUBSHELL_SUPPORT, 1,
  387. [Define to enable subshell support])
  388. fi
  389. AC_MSG_RESULT([$result])
  390. subshell="$result"
  391. dnl
  392. dnl Select the screen library. mcslang is the included S-Lang library.
  393. dnl
  394. AC_ARG_WITH(screen,
  395. [ --with-screen=LIB Compile with screen library: slang, mcslang or
  396. ncurses [[slang if found, else mcslang]]])
  397. case x$with_screen in
  398. xslang)
  399. MC_WITH_SLANG(strict)
  400. ;;
  401. xmcslang)
  402. MC_WITH_MCSLANG
  403. ;;
  404. xncurses)
  405. MC_WITH_NCURSES
  406. ;;
  407. x)
  408. MC_WITH_SLANG
  409. ;;
  410. *)
  411. AC_MSG_ERROR([Value of the screen library is incorrect])
  412. ;;
  413. esac
  414. dnl
  415. dnl Force using termcap. This option is processed in MC_WITH_MCSLANG.
  416. dnl Report an error if this option is not applicable.
  417. dnl
  418. AC_ARG_WITH(termcap,
  419. [ --with-termcap Try using termcap database [[only if no terminfo]]],
  420. [if test x$with_screen != xmcslang; then
  421. AC_MSG_ERROR([Option `--with-termcap' only works with `--with-screen=mcslang'])
  422. fi
  423. ])
  424. dnl
  425. dnl Internal editor support.
  426. dnl
  427. AC_ARG_WITH(edit,
  428. [ --with-edit Enable internal editor [[yes]]])
  429. if test x$with_edit != xno; then
  430. AC_DEFINE(USE_INTERNAL_EDIT, 1, [Define to enable internal editor])
  431. use_edit=yes
  432. edit_msg="yes"
  433. AC_MSG_NOTICE([using internal editor])
  434. else
  435. edit_msg="no"
  436. fi
  437. dnl Check if the OS is supported by the console saver.
  438. cons_saver=""
  439. case $host_os in
  440. linux*)
  441. cons_saver=yes
  442. esac
  443. dnl Support for background operations
  444. AC_ARG_ENABLE([background],
  445. [ --enable-background Support for background file operations [[yes]]])
  446. if test "x$enable_background" != xno; then
  447. AC_DEFINE(WITH_BACKGROUND, 1, [Define to enable background file operations])
  448. fi
  449. dnl
  450. dnl User visible support for charset conversion.
  451. dnl
  452. AC_ARG_ENABLE([charset],
  453. [ --enable-charset Support for charset selection and conversion [[no]]])
  454. have_charset=
  455. charset_msg="no"
  456. if test "x$enable_charset" = xyes; then
  457. if test "x$am_cv_func_iconv" != xyes; then
  458. AC_MSG_WARN([Cannot enable charset support because iconv function is missing])
  459. else
  460. AC_DEFINE(HAVE_CHARSET, 1,
  461. [Define to enable charset selection and conversion])
  462. have_charset=yes
  463. charset_msg="yes"
  464. fi
  465. fi
  466. if test "$GLIBC21" != yes; then
  467. AC_DEFINE(USE_INCLUDED_REGEX, 1, [Use the regex included here])
  468. fi
  469. dnl If default CFLAGS is used with gcc, add -Wall
  470. if test -z "$ac_env_CFLAGS_set"; then
  471. if test -n "$GCC"; then
  472. CFLAGS="$CFLAGS -Wall"
  473. fi
  474. fi
  475. AC_SUBST(CFLAGS)
  476. AC_SUBST(CPPFLAGS)
  477. AC_SUBST(LDFLAGS)
  478. AC_SUBST(LIBS)
  479. dnl Libraries used only when building the mc binary
  480. AC_SUBST(MCLIBS)
  481. dnl Version for the RedHat package, without dashes
  482. RPM_VERSION=`echo $VERSION | sed 's/-//g'`
  483. AC_SUBST(RPM_VERSION)
  484. if test -n "$use_smbfs"; then
  485. AC_CONFIG_SUBDIRS([vfs/samba])
  486. fi
  487. AM_CONDITIONAL(USE_EDIT, [test -n "$use_edit"])
  488. AM_CONDITIONAL(USE_VFS, [test "x$use_vfs" = xyes])
  489. AM_CONDITIONAL(USE_VFS_NET, [test x"$use_net_code" = xtrue])
  490. AM_CONDITIONAL(USE_UNDEL_FS, [test -n "$use_undelfs"])
  491. AM_CONDITIONAL(USE_SAMBA_FS, [test -n "$use_smbfs"])
  492. AM_CONDITIONAL(USE_MCFS, [test -n "$use_mcfs"])
  493. AM_CONDITIONAL(INCLUDED_SLANG, [test "x$with_screen" = xmcslang])
  494. AM_CONDITIONAL(CHARSET, [test -n "$have_charset"])
  495. AM_CONDITIONAL(CONS_SAVER, [test -n "$cons_saver"])
  496. AC_CONFIG_FILES([
  497. Makefile
  498. mc.spec
  499. mc.qpg
  500. pkginfo
  501. prototype
  502. doc/Makefile
  503. vfs/Makefile
  504. vfs/extfs/Makefile
  505. lib/Makefile
  506. src/Makefile
  507. slang/Makefile
  508. edit/Makefile
  509. syntax/Makefile
  510. m4/Makefile
  511. lib/mc.ext
  512. vfs/extfs/a
  513. vfs/extfs/apt
  514. vfs/extfs/audio
  515. vfs/extfs/deb
  516. vfs/extfs/deba
  517. vfs/extfs/debd
  518. vfs/extfs/dpkg
  519. vfs/extfs/iso9660
  520. vfs/extfs/hp48
  521. vfs/extfs/lslR
  522. vfs/extfs/mailfs
  523. vfs/extfs/patchfs
  524. vfs/extfs/rpms
  525. vfs/extfs/ualz
  526. vfs/extfs/uar
  527. vfs/extfs/uarj
  528. vfs/extfs/uha
  529. vfs/extfs/ulha
  530. vfs/extfs/urar
  531. vfs/extfs/uzip
  532. vfs/extfs/uzoo
  533. doc/mc.1 doc/mcedit.1 doc/mcview.1 doc/mcserv.8
  534. doc/es/mc.1 doc/es/Makefile
  535. doc/hu/mc.1 doc/hu/Makefile
  536. doc/it/mc.1 doc/it/Makefile
  537. doc/pl/mc.1 doc/pl/Makefile
  538. doc/ru/mc.1 doc/ru/Makefile
  539. doc/sr/mc.1 doc/sr/mcserv.8 doc/sr/Makefile
  540. intl/Makefile
  541. po/Makefile.in
  542. ])
  543. AC_OUTPUT
  544. echo "
  545. Configuration:
  546. Source code location: ${srcdir}
  547. Compiler: ${CC}
  548. Compiler flags: ${CFLAGS}
  549. File system: ${vfs_type}
  550. ${vfs_flags}
  551. Screen library: ${screen_msg}
  552. Mouse support: ${mouse_lib}
  553. X11 events support: ${textmode_x11_support}
  554. With subshell support: ${subshell}
  555. Internal editor: ${edit_msg}
  556. Support for charset: ${charset_msg}
  557. "