configure.ac 15 KB

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