configure.ac 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687
  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. strncasecmp \
  134. realpath
  135. ])
  136. dnl
  137. dnl getpt is a GNU Extension (glibc 2.1.x)
  138. dnl
  139. AC_CHECK_FUNCS(posix_openpt, , [AC_CHECK_FUNCS(getpt)])
  140. AC_CHECK_FUNCS(grantpt, , [AC_CHECK_LIB(pt, grantpt)])
  141. dnl replacing lstat with statlstat on sco makes it more portable between
  142. dnl sco clones
  143. AC_CHECK_FUNCS(statlstat)
  144. dnl
  145. dnl If running under AIX, AC_AIX does not tell us that
  146. dnl
  147. AC_MSG_CHECKING([for AIX defines])
  148. AC_EGREP_CPP(yes,
  149. [#if defined(AIX) || defined(_AIX) || defined(__aix__) || defined(aix)
  150. yes
  151. #endif
  152. ], [
  153. AC_DEFINE(IS_AIX, 1, [Define if compiling for AIX])
  154. AC_MSG_RESULT(yes)
  155. ], [AC_MSG_RESULT(no)])
  156. dnl
  157. dnl This is from GNU fileutils, check aclocal.m4 for more information
  158. dnl
  159. AC_GET_FS_INFO
  160. dnl
  161. dnl Missing typedefs and replacements
  162. dnl
  163. AC_CHECK_SIZEOF(long)
  164. AC_CHECK_SIZEOF(long long)
  165. AC_TYPE_MODE_T
  166. AC_TYPE_OFF_T
  167. AC_CHECK_SIZEOF(off_t)
  168. AC_TYPE_PID_T
  169. AC_TYPE_UID_T
  170. AC_CHECK_TYPE(nlink_t, unsigned int)
  171. AC_CHECK_TYPES([socklen_t],,,
  172. [
  173. #include <sys/types.h>
  174. #include <sys/socket.h>
  175. ])
  176. dnl This is needed for regex.c only
  177. AC_CHECK_TYPE(uintptr_t,
  178. [AC_DEFINE(HAVE_UINTPTR_T, 1,
  179. [Define if you have the `uintptr_t' type.])
  180. ])
  181. AC_FUNC_ALLOCA
  182. AC_FUNC_STRCOLL
  183. dnl
  184. dnl X11 support.
  185. dnl Used to read keyboard modifiers when running under X11.
  186. dnl
  187. AC_PATH_XTRA
  188. if test "x$no_x" = xyes; then
  189. textmode_x11_support="no"
  190. else
  191. CPPFLAGS="$CPPFLAGS $X_CFLAGS"
  192. if test "x$mc_cv_g_module_supported" = "xyes" ; then
  193. dnl Replace the contents of GLIB_CFLAGS and GLIB_LIBS with those of
  194. dnl GMODULE_CFLAGS and GMODULE_LIBS, only if X is available and gmodule
  195. dnl functionality is supported on the system. This way, mc will be
  196. dnl linked against the gmodule library only when it's really required.
  197. GLIB_CFLAGS="$GMODULE_CFLAGS"
  198. GLIB_LIBS="$GMODULE_LIBS"
  199. else
  200. MCLIBS="$X_LIBS $X_PRE_LIBS -lX11 $X_EXTRA_LIBS"
  201. fi
  202. AC_DEFINE(HAVE_TEXTMODE_X11_SUPPORT, 1,
  203. [Define to enable getting events from X Window System])
  204. textmode_x11_support="yes"
  205. fi
  206. dnl
  207. dnl Try to find static libraries for glib and gmodule.
  208. dnl
  209. if test x$with_glib_static = xyes; then
  210. new_GLIB_LIBS=
  211. for i in $GLIB_LIBS; do
  212. case x$i in
  213. x-lglib*)
  214. lib=glib ;;
  215. x-lgmodule*)
  216. lib=gmodule ;;
  217. *)
  218. lib=
  219. add="$i" ;;
  220. esac
  221. if test -n "$lib"; then
  222. lib1=`echo $i | sed 's/^-l//'`
  223. if test -f "$GLIB_LIBDIR/lib${lib1}.a"; then
  224. add="$GLIB_LIBDIR/lib${lib1}.a"
  225. else
  226. if test -f "$GLIB_LIBDIR/lib${lib}.a"; then
  227. add="$GLIB_LIBDIR/lib${lib}.a"
  228. else
  229. AC_MSG_ERROR([Cannot find static $lib])
  230. fi
  231. fi
  232. fi
  233. new_GLIB_LIBS="$new_GLIB_LIBS $add"
  234. done
  235. GLIB_LIBS="$new_GLIB_LIBS"
  236. fi
  237. dnl
  238. dnl Network related functions
  239. dnl
  240. AC_SEARCH_LIBS([socket], [socket])
  241. AC_SEARCH_LIBS([gethostbyname], [nsl])
  242. dnl
  243. dnl Sequent wants getprocessstats
  244. dnl
  245. AC_CHECK_LIB(seq, get_process_stats, [
  246. LIBS="$LIBS -lseq"
  247. AC_DEFINE(HAVE_GET_PROCESS_STATS, 1,
  248. [Define if you have function `get_process_stats' and
  249. have to use that instead of gettimeofday])])
  250. AC_MC_VFS_CHECKS
  251. vfs_type="normal"
  252. if test x$enable_vfs = xyes; then
  253. AC_MSG_NOTICE([enabling VFS code])
  254. vfs_type="Midnight Commander Virtual File System"
  255. fi
  256. dnl
  257. dnl Check for gpm mouse support (Linux only)
  258. dnl
  259. mouse_lib="xterm only"
  260. AC_ARG_WITH(gpm-mouse,
  261. [ --with-gpm-mouse Compile with gpm mouse support (Linux only)
  262. [[yes if found]]])
  263. case $host_os in
  264. linux*)
  265. if test x$with_gpm_mouse != xno; then
  266. AC_CHECK_LIB(gpm, Gpm_Repeat,
  267. [AC_DEFINE(HAVE_LIBGPM, 1,
  268. [Define to enable gpm mouse support on Linux])
  269. mouse_lib="gpm and xterm"
  270. MCLIBS="$MCLIBS -lgpm"],
  271. if test "x$with_gpm_mouse" = "xyes"; then
  272. [AC_MSG_ERROR([libgpm is missing or older than 0.18])]
  273. else
  274. [AC_MSG_WARN([libgpm is missing or older than 0.18])]
  275. fi
  276. )
  277. fi
  278. ;;
  279. esac
  280. MC_CHECK_SEARCH_TYPE
  281. dnl
  282. dnl Check nroff and the options it supports
  283. dnl
  284. AC_CHECK_PROG(HAVE_nroff, nroff, true, false)
  285. dnl Default values
  286. MANDOC=-man
  287. MAN_FLAGS=
  288. if $HAVE_nroff; then
  289. AC_MSG_CHECKING([for manual formatting macros])
  290. AC_CACHE_VAL(mc_cv_mandoc, [
  291. nroff -mandoc < /dev/null > /dev/null 2>&1
  292. if test $? = 0; then
  293. mc_cv_mandoc=-mandoc
  294. else
  295. mc_cv_mandoc=-man
  296. fi
  297. ])
  298. MANDOC=$mc_cv_mandoc
  299. AC_MSG_RESULT([$MANDOC])
  300. AC_MSG_CHECKING([for option to disable ANSI color in manuals])
  301. AC_CACHE_VAL(mc_cv_man_nocolor, [
  302. nroff -c < /dev/null > /dev/null 2>&1
  303. if test $? = 0; then
  304. mc_cv_man_nocolor=-c
  305. else
  306. mc_cv_man_nocolor=
  307. fi
  308. ])
  309. MAN_FLAGS=$mc_cv_man_nocolor
  310. AC_MSG_RESULT([${MAN_NOCOLOR-none}])
  311. AC_MSG_CHECKING([if nroff accepts -Tlatin1 or -Tascii])
  312. AC_CACHE_VAL(mc_cv_nroff_tascii, [
  313. mc_cv_nroff_tascii=
  314. nroff -Tlatin1 < /dev/null > /dev/null 2>&1 /dev/null
  315. if test $? = 0; then
  316. mc_cv_nroff_tascii=-Tlatin1
  317. else
  318. nroff -Tascii < /dev/null > /dev/null 2>&1 /dev/null
  319. if test $? = 0; then
  320. mc_cv_nroff_tascii=-Tascii
  321. fi
  322. fi
  323. ])
  324. AC_MSG_RESULT([${mc_cv_nroff_tascii-no}])
  325. MAN_FLAGS="$MAN_FLAGS $mc_cv_nroff_tascii"
  326. fi
  327. AC_SUBST(MANDOC)
  328. AC_SUBST(MAN_FLAGS)
  329. dnl
  330. dnl Check for -L option to file
  331. dnl
  332. AC_CHECK_PROG(HAVE_FILECMD, file, true, false)
  333. if $HAVE_FILECMD; then
  334. AC_MSG_CHECKING([for -L option to file command])
  335. AC_CACHE_VAL(mc_cv_filel, [
  336. file -L . > /dev/null 2>&1
  337. if test $? = 0; then
  338. mc_cv_filel=yes
  339. else
  340. mc_cv_filel=no
  341. fi
  342. ])
  343. if test x$mc_cv_filel = xyes; then
  344. AC_DEFINE(FILE_L, 1, [Define if the file command accepts the -L option])
  345. fi
  346. filel=$mc_cv_filel
  347. AC_MSG_RESULT([$filel])
  348. fi
  349. AC_MSG_CHECKING([for subshell support])
  350. AC_ARG_WITH(subshell,
  351. [ --with-subshell Compile in concurrent subshell [[yes]]
  352. --with-subshell=optional Don't run concurrent shell by default [[no]]],
  353. [result=no
  354. if test x$withval = xoptional
  355. then
  356. AC_DEFINE(SUBSHELL_OPTIONAL, 1,
  357. [Define to make subshell support optional])
  358. result="optional"
  359. fi
  360. if test x$withval = xyes
  361. then
  362. result="yes"
  363. fi],
  364. [dnl Default: enable the subshell support
  365. result="yes"
  366. ])
  367. if test "x$result" != xno; then
  368. AC_DEFINE(HAVE_SUBSHELL_SUPPORT, 1,
  369. [Define to enable subshell support])
  370. fi
  371. AC_MSG_RESULT([$result])
  372. subshell="$result"
  373. dnl
  374. dnl Select the screen library.
  375. dnl
  376. AC_ARG_WITH(screen,
  377. [ --with-screen=LIB Compile with screen library: slang or
  378. ncurses [[slang if found]]])
  379. case x$with_screen in
  380. xslang)
  381. MC_WITH_SLANG(strict)
  382. ;;
  383. xncurses)
  384. MC_WITH_NCURSES
  385. ;;
  386. xncursesw)
  387. MC_WITH_NCURSESW
  388. ;;
  389. x)
  390. MC_WITH_SLANG
  391. ;;
  392. *)
  393. AC_MSG_ERROR([Value of the screen library is incorrect])
  394. ;;
  395. esac
  396. dnl
  397. dnl Internal editor support.
  398. dnl
  399. AC_ARG_WITH(edit,
  400. [ --with-edit Enable internal editor [[yes]]])
  401. if test x$with_edit != xno; then
  402. AC_DEFINE(USE_INTERNAL_EDIT, 1, [Define to enable internal editor])
  403. use_edit=yes
  404. edit_msg="yes"
  405. AC_MSG_NOTICE([using internal editor])
  406. else
  407. edit_msg="no"
  408. fi
  409. dnl
  410. dnl Diff viewer support.
  411. dnl
  412. AC_ARG_WITH(diff_viewer,
  413. [ --with-diff-viewer Compile with diff viewer [[yes]]])
  414. if test x$with_diff_viewer != xno; then
  415. AC_DEFINE(USE_DIFF_VIEW, 1, [Define to enable diff viewer])
  416. use_diff=yes
  417. diff_msg="yes"
  418. AC_MSG_NOTICE([using diff viewer])
  419. else
  420. diff_msg="no"
  421. fi
  422. dnl Check if the OS is supported by the console saver.
  423. cons_saver=""
  424. case $host_os in
  425. linux*)
  426. cons_saver=yes
  427. esac
  428. dnl Support for background operations
  429. AC_ARG_ENABLE([background],
  430. [ --enable-background Support for background file operations [[yes]]])
  431. if test "x$enable_background" != xno; then
  432. AC_DEFINE(WITH_BACKGROUND, 1, [Define to enable background file operations])
  433. fi
  434. dnl
  435. dnl User visible support for charset conversion.
  436. dnl
  437. AC_ARG_ENABLE([charset],
  438. [ --enable-charset Support for charset selection and conversion [[yes]]])
  439. have_charset=
  440. charset_msg="no"
  441. if test "x$enable_charset" != "xno"; then
  442. AC_DEFINE(HAVE_CHARSET, 1,
  443. [Define to enable charset selection and conversion])
  444. have_charset=yes
  445. charset_msg="yes"
  446. fi
  447. if test "$GLIBC21" != yes; then
  448. AC_DEFINE(USE_INCLUDED_REGEX, 1, [Use the regex included here])
  449. fi
  450. MC_CHECK_CFLAGS
  451. CFLAGS_OPTS=""
  452. if test "x$CFLAGS" = "x"; then
  453. CFLAGS_OPTS=" -O2 "
  454. fi
  455. if test x$USE_MAINTAINER_MODE = xyes; then
  456. CFLAGS_OPTS="-g3 -O -ggdb"
  457. AC_DEFINE(USE_MAINTAINER_MODE, 1, [Use maintainer mode])
  458. fi
  459. AC_ARG_ENABLE(
  460. [werror],
  461. AC_HELP_STRING([--enable-werror], [Handle all compiler warnings as errors] )
  462. )
  463. if test "x$enable_werror" = xyes; then
  464. MC_CHECK_ONE_CFLAG([-Werror])
  465. fi
  466. CFLAGS="$mc_configured_cflags $CFLAGS_OPTS $CFLAGS"
  467. AC_SUBST(CFLAGS)
  468. AC_SUBST(CPPFLAGS)
  469. AC_SUBST(LDFLAGS)
  470. AC_SUBST(LIBS)
  471. dnl Libraries used only when building the mc binary
  472. AC_SUBST(MCLIBS)
  473. if test -n "$use_smbfs"; then
  474. AC_CONFIG_SUBDIRS([lib/vfs/mc-vfs/samba])
  475. fi
  476. AM_CONDITIONAL(USE_MAINTAINER_MODE, [test x"$USE_MAINTAINER_MODE" = xyes])
  477. AM_CONDITIONAL(USE_SCREEN_SLANG, [test x"$with_screen" = xslang])
  478. AM_CONDITIONAL(USE_EDIT, [test -n "$use_edit"])
  479. AM_CONDITIONAL(USE_DIFF, [test -n "$use_diff"])
  480. AM_CONDITIONAL(ENABLE_VFS_NET, [test x"$use_net_code" = xtrue])
  481. AM_CONDITIONAL(USE_SAMBA_FS, [test -n "$use_smbfs"])
  482. AM_CONDITIONAL(ENABLE_MCSERVER, [test x"$enable_mcserver" = "xyes"])
  483. AM_CONDITIONAL(CHARSET, [test -n "$have_charset"])
  484. AM_CONDITIONAL(CONS_SAVER, [test -n "$cons_saver"])
  485. AC_CONFIG_FILES(
  486. [
  487. src/man2hlp/man2hlp
  488. ],
  489. [
  490. chmod +x src/man2hlp/man2hlp
  491. ])
  492. AC_CONFIG_FILES([
  493. Makefile
  494. contrib/Makefile
  495. contrib/dist/Makefile
  496. contrib/dist/debian/Makefile
  497. contrib/dist/gentoo/Makefile
  498. contrib/dist/redhat/Makefile
  499. contrib/dist/redhat/mc.spec
  500. contrib/dist/mc.qpg
  501. contrib/dist/pkginfo
  502. contrib/dist/prototype
  503. misc/Makefile
  504. misc/skins/Makefile
  505. misc/mc.ext
  506. src/Makefile
  507. src/consaver/Makefile
  508. src/editor/Makefile
  509. src/man2hlp/Makefile
  510. src/viewer/Makefile
  511. src/diffviewer/Makefile
  512. lib/Makefile
  513. lib/filehighlight/Makefile
  514. lib/mcconfig/Makefile
  515. lib/search/Makefile
  516. lib/skin/Makefile
  517. lib/strutil/Makefile
  518. lib/tty/Makefile
  519. lib/vfs/Makefile
  520. lib/vfs/mc-vfs/Makefile
  521. lib/vfs/mc-vfs/extfs/Makefile
  522. lib/vfs/mc-vfs/extfs/a+
  523. lib/vfs/mc-vfs/extfs/apt+
  524. lib/vfs/mc-vfs/extfs/audio
  525. lib/vfs/mc-vfs/extfs/deb
  526. lib/vfs/mc-vfs/extfs/deba
  527. lib/vfs/mc-vfs/extfs/debd
  528. lib/vfs/mc-vfs/extfs/dpkg+
  529. lib/vfs/mc-vfs/extfs/iso9660
  530. lib/vfs/mc-vfs/extfs/hp48+
  531. lib/vfs/mc-vfs/extfs/lslR
  532. lib/vfs/mc-vfs/extfs/mailfs
  533. lib/vfs/mc-vfs/extfs/patchfs
  534. lib/vfs/mc-vfs/extfs/rpms+
  535. lib/vfs/mc-vfs/extfs/s3+
  536. lib/vfs/mc-vfs/extfs/uace
  537. lib/vfs/mc-vfs/extfs/ualz
  538. lib/vfs/mc-vfs/extfs/uar
  539. lib/vfs/mc-vfs/extfs/uarc
  540. lib/vfs/mc-vfs/extfs/uarj
  541. lib/vfs/mc-vfs/extfs/uc1541
  542. lib/vfs/mc-vfs/extfs/uha
  543. lib/vfs/mc-vfs/extfs/ulha
  544. lib/vfs/mc-vfs/extfs/urar
  545. lib/vfs/mc-vfs/extfs/uzip
  546. lib/vfs/mc-vfs/extfs/uzoo
  547. misc/syntax/Makefile
  548. doc/Makefile
  549. doc/hints/Makefile
  550. doc/man/mc.1 doc/man/mcedit.1 doc/man/mcview.1 doc/man/mcserv.8 doc/man/Makefile
  551. doc/man/es/mc.1 doc/man/es/Makefile
  552. doc/man/hu/mc.1 doc/man/hu/Makefile
  553. doc/man/it/mc.1 doc/man/it/Makefile
  554. doc/man/pl/mc.1 doc/man/pl/Makefile
  555. doc/man/ru/mc.1 doc/man/ru/Makefile
  556. doc/man/sr/mc.1 doc/man/sr/mcserv.8 doc/man/sr/Makefile
  557. doc/hlp/Makefile
  558. doc/hlp/es/Makefile
  559. doc/hlp/hu/Makefile
  560. doc/hlp/it/Makefile
  561. doc/hlp/pl/Makefile
  562. doc/hlp/ru/Makefile
  563. doc/hlp/sr/Makefile
  564. intl/Makefile
  565. po/Makefile.in
  566. ])
  567. AC_OUTPUT
  568. if test x$enable_mcserver = x; then
  569. enable_mcserver='no'
  570. fi
  571. echo "
  572. Configuration:
  573. Source code location: ${srcdir}
  574. Compiler: ${CC}
  575. Compiler flags: ${CFLAGS}
  576. File system: ${vfs_type}
  577. ${vfs_flags}
  578. Screen library: ${screen_msg}
  579. Mouse support: ${mouse_lib}
  580. X11 events support: ${textmode_x11_support}
  581. With subshell support: ${subshell}
  582. Internal editor: ${edit_msg}
  583. Diff viewer: ${diff_msg}
  584. Support for charset: ${charset_msg}
  585. Search type: ${SEARCH_TYPE}
  586. "