configure.ac 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654
  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. PKG_PROG_PKG_CONFIG
  20. AC_PATH_PROG([PERL], [perl], [/usr/bin/perl])
  21. AC_ISC_POSIX
  22. AC_PROG_CC_STDC
  23. AM_PROG_CC_C_O
  24. dnl Doxygen
  25. DX_HTML_FEATURE(ON)
  26. DX_CHM_FEATURE(OFF)
  27. DX_CHI_FEATURE(OFF)
  28. DX_MAN_FEATURE(OFF)
  29. DX_RTF_FEATURE(OFF)
  30. DX_XML_FEATURE(OFF)
  31. DX_PDF_FEATURE(OFF)
  32. DX_PS_FEATURE(OFF)
  33. DX_INIT_DOXYGEN(mc,doxygen.cfg,devel)
  34. dnl
  35. dnl Static build of the mc executable
  36. dnl (must come before glib checks)
  37. dnl
  38. AC_ARG_ENABLE([static-build],
  39. [ --enable-static-build Build statically linked mc executable])
  40. AM_CONDITIONAL(ENABLE_STATIC_BUILD, [test "$enable_static_build" = "yes"])
  41. dnl PKG_CHECK_MODULES([CHECK], [check >= 0.9.4])
  42. dnl
  43. dnl First try glib 2.x.
  44. dnl Keep this check close to the beginning, so that the users
  45. dnl without any glib won't have their time wasted by other checks.
  46. dnl
  47. AC_ARG_WITH([glib_static],
  48. [ --with-glib-static Link glib statically [[no]]])
  49. glib_found=no
  50. PKG_CHECK_MODULES(GLIB, [glib-2.0 >= 2.8], [glib_found=yes], [:])
  51. if test x"$glib_found" = xno; then
  52. AC_MSG_ERROR([glib-2.0 not found or version too old (must be >= 2.8)])
  53. fi
  54. PKG_CHECK_MODULES(GMODULE, [gmodule-2.0], [gmodule_found=yes])
  55. GLIB_LIBDIR="`$PKG_CONFIG --variable=libdir glib-2.0`"
  56. if test "x$gmodule_found" = "xyes" ; then
  57. dnl Check if the gmodule functionality supported on this system.
  58. AC_G_MODULE_SUPPORTED
  59. fi
  60. AC_HEADER_MAJOR
  61. AC_C_CONST
  62. AC_SYS_LARGEFILE
  63. AC_PROG_LN_S
  64. AC_CHECK_TOOL(AR, ar, ar)
  65. dnl Only list browsers here that can be run in background (i.e. with `&')
  66. AC_CHECK_PROGS(X11_WWW, [gnome-moz-remote mozilla konqueror opera netscape])
  67. dnl
  68. dnl Ovverriding mmap support. This has to be before AC_FUNC_MMAP is used.
  69. dnl We use only part of the functionality of mmap, so on AIX,
  70. dnl it's possible to use mmap, even if it doesn't pass the autoconf test.
  71. dnl
  72. AC_ARG_WITH(mmap,
  73. [ --with-mmap Use the mmap call [[yes if found]]])
  74. if test x$with_mmap != xno; then
  75. if test x$with_mmap = x; then
  76. AC_FUNC_MMAP
  77. else
  78. AC_DEFINE(HAVE_MMAP, 1)
  79. fi
  80. fi
  81. dnl
  82. dnl Internationalization
  83. dnl
  84. AM_GNU_GETTEXT(no-libtool, need-ngettext)
  85. AM_GNU_GETTEXT_VERSION(0.14.3)
  86. if test "x$USE_INCLUDED_LIBINTL" = xyes; then
  87. CPPFLAGS="$CPPFLAGS -I\$(top_builddir)/intl -I\$(top_srcdir)/intl"
  88. fi
  89. dnl Determine which help translations we want to install.
  90. ALL_DOC_LINGUAS="es hu it pl ru sr"
  91. DOC_LINGUAS=
  92. if test "x$USE_NLS" = xyes; then
  93. if test -z "$LINGUAS"; then
  94. langs="`grep -v '^#' $srcdir/po/LINGUAS`"
  95. else
  96. langs="$LINGUAS"
  97. fi
  98. else
  99. langs=
  100. fi
  101. for h_lang in $ALL_DOC_LINGUAS; do
  102. for lang in $langs; do
  103. if test "$lang" = "$h_lang"; then
  104. DOC_LINGUAS="$DOC_LINGUAS $lang"
  105. break
  106. fi
  107. done
  108. done
  109. AC_SUBST(DOC_LINGUAS)
  110. dnl
  111. dnl OS specific flags.
  112. dnl
  113. case $host_os in
  114. aux*)
  115. # A/UX
  116. LIBS="$LIBS -lposix"
  117. AC_DEFINE(_POSIX_SOURCE)
  118. ;;
  119. esac
  120. AC_PROG_INSTALL
  121. AC_CHECK_HEADERS([unistd.h string.h memory.h limits.h malloc.h \
  122. utime.h fcntl.h sys/statfs.h sys/vfs.h sys/time.h \
  123. sys/timeb.h sys/select.h sys/ioctl.h stropts.h arpa/inet.h \
  124. security/pam_misc.h sys/socket.h sys/sysmacros.h sys/types.h \
  125. sys/mkdev.h wchar.h wctype.h])
  126. AC_HEADER_TIME
  127. AC_HEADER_DIRENT
  128. AC_HEADER_STDC
  129. dnl Missing structure components
  130. AC_CHECK_MEMBERS([struct stat.st_blksize, struct stat.st_rdev])
  131. AC_STRUCT_ST_BLOCKS
  132. dnl
  133. dnl Check availability of some functions
  134. dnl
  135. AC_CHECK_FUNCS([\
  136. atoll \
  137. cfgetospeed \
  138. initgroups isascii \
  139. setreuid statfs sysconf \
  140. tcgetattr tcsetattr truncate \
  141. strverscmp \
  142. strncasecmp \
  143. realpath
  144. ])
  145. dnl
  146. dnl getpt is a GNU Extension (glibc 2.1.x)
  147. dnl
  148. AC_CHECK_FUNCS(posix_openpt, , [AC_CHECK_FUNCS(getpt)])
  149. AC_CHECK_FUNCS(grantpt, , [AC_CHECK_LIB(pt, grantpt)])
  150. dnl replacing lstat with statlstat on sco makes it more portable between
  151. dnl sco clones
  152. AC_CHECK_FUNCS(statlstat)
  153. dnl
  154. dnl If running under AIX, AC_AIX does not tell us that
  155. dnl
  156. AC_MSG_CHECKING([for AIX defines])
  157. AC_EGREP_CPP(yes,
  158. [#if defined(AIX) || defined(_AIX) || defined(__aix__) || defined(aix)
  159. yes
  160. #endif
  161. ], [
  162. AC_DEFINE(IS_AIX, 1, [Define if compiling for AIX])
  163. AC_MSG_RESULT(yes)
  164. ], [AC_MSG_RESULT(no)])
  165. dnl
  166. dnl This is from GNU fileutils, check aclocal.m4 for more information
  167. dnl
  168. AC_GET_FS_INFO
  169. dnl
  170. dnl Missing typedefs and replacements
  171. dnl
  172. AC_CHECK_SIZEOF(long)
  173. AC_CHECK_SIZEOF(long long)
  174. AC_TYPE_MODE_T
  175. AC_TYPE_OFF_T
  176. AC_CHECK_SIZEOF(off_t)
  177. AC_TYPE_PID_T
  178. AC_TYPE_UID_T
  179. AC_CHECK_TYPE(nlink_t, unsigned int)
  180. AC_CHECK_TYPES([socklen_t],,,
  181. [
  182. #include <sys/types.h>
  183. #include <sys/socket.h>
  184. ])
  185. dnl This is needed for regex.c only
  186. AC_CHECK_TYPE(uintptr_t,
  187. [AC_DEFINE(HAVE_UINTPTR_T, 1,
  188. [Define if you have the `uintptr_t' type.])
  189. ])
  190. AC_FUNC_ALLOCA
  191. AC_FUNC_STRCOLL
  192. dnl
  193. dnl X11 support.
  194. dnl Used to read keyboard modifiers when running under X11.
  195. dnl
  196. AC_PATH_XTRA
  197. if test "x$no_x" = xyes; then
  198. textmode_x11_support="no"
  199. else
  200. CPPFLAGS="$CPPFLAGS $X_CFLAGS"
  201. if test "x$mc_cv_g_module_supported" = "xyes" ; then
  202. dnl Replace the contents of GLIB_CFLAGS and GLIB_LIBS with those of
  203. dnl GMODULE_CFLAGS and GMODULE_LIBS, only if X is available and gmodule
  204. dnl functionality is supported on the system. This way, mc will be
  205. dnl linked against the gmodule library only when it's really required.
  206. GLIB_CFLAGS="$GMODULE_CFLAGS"
  207. GLIB_LIBS="$GMODULE_LIBS"
  208. else
  209. MCLIBS="$X_LIBS $X_PRE_LIBS -lX11 $X_EXTRA_LIBS"
  210. fi
  211. AC_DEFINE(HAVE_TEXTMODE_X11_SUPPORT, 1,
  212. [Define to enable getting events from X Window System])
  213. textmode_x11_support="yes"
  214. fi
  215. dnl
  216. dnl Try to find static libraries for glib and gmodule.
  217. dnl
  218. if test x$with_glib_static = xyes; then
  219. new_GLIB_LIBS=
  220. for i in $GLIB_LIBS; do
  221. case x$i in
  222. x-lglib*)
  223. lib=glib ;;
  224. x-lgmodule*)
  225. lib=gmodule ;;
  226. *)
  227. lib=
  228. add="$i" ;;
  229. esac
  230. if test -n "$lib"; then
  231. lib1=`echo $i | sed 's/^-l//'`
  232. if test -f "$GLIB_LIBDIR/lib${lib1}.a"; then
  233. add="$GLIB_LIBDIR/lib${lib1}.a"
  234. else
  235. if test -f "$GLIB_LIBDIR/lib${lib}.a"; then
  236. add="$GLIB_LIBDIR/lib${lib}.a"
  237. else
  238. AC_MSG_ERROR([Cannot find static $lib])
  239. fi
  240. fi
  241. fi
  242. new_GLIB_LIBS="$new_GLIB_LIBS $add"
  243. done
  244. GLIB_LIBS="$new_GLIB_LIBS"
  245. fi
  246. dnl
  247. dnl Sequent wants getprocessstats
  248. dnl
  249. AC_CHECK_LIB(seq, get_process_stats, [
  250. LIBS="$LIBS -lseq"
  251. AC_DEFINE(HAVE_GET_PROCESS_STATS, 1,
  252. [Define if you have function `get_process_stats' and
  253. have to use that instead of gettimeofday])])
  254. AC_MC_VFS_CHECKS
  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. MC_WITH_SCREEN
  373. dnl
  374. dnl Internal editor support.
  375. dnl
  376. AC_ARG_WITH(edit,
  377. [ --with-edit Enable internal editor [[yes]]])
  378. if test x$with_edit != xno; then
  379. AC_DEFINE(USE_INTERNAL_EDIT, 1, [Define to enable internal editor])
  380. use_edit=yes
  381. edit_msg="yes"
  382. AC_MSG_NOTICE([using internal editor])
  383. else
  384. edit_msg="no"
  385. fi
  386. dnl
  387. dnl Diff viewer support.
  388. dnl
  389. AC_ARG_WITH(diff_viewer,
  390. [ --with-diff-viewer Compile with diff viewer [[yes]]])
  391. if test x$with_diff_viewer != xno; then
  392. AC_DEFINE(USE_DIFF_VIEW, 1, [Define to enable diff viewer])
  393. use_diff=yes
  394. diff_msg="yes"
  395. AC_MSG_NOTICE([using diff viewer])
  396. else
  397. diff_msg="no"
  398. fi
  399. dnl Check if the OS is supported by the console saver.
  400. cons_saver=""
  401. case $host_os in
  402. linux*)
  403. cons_saver=yes
  404. esac
  405. dnl Support for background operations
  406. AC_ARG_ENABLE([background],
  407. [ --enable-background Support for background file operations [[yes]]])
  408. if test "x$enable_background" != xno; then
  409. AC_DEFINE(WITH_BACKGROUND, 1, [Define to enable background file operations])
  410. fi
  411. dnl
  412. dnl User visible support for charset conversion.
  413. dnl
  414. AC_ARG_ENABLE([charset],
  415. [ --enable-charset Support for charset selection and conversion [[yes]]])
  416. have_charset=
  417. charset_msg="no"
  418. if test "x$enable_charset" != "xno"; then
  419. AC_DEFINE(HAVE_CHARSET, 1,
  420. [Define to enable charset selection and conversion])
  421. have_charset=yes
  422. charset_msg="yes"
  423. fi
  424. if test "$GLIBC21" != yes; then
  425. AC_DEFINE(USE_INCLUDED_REGEX, 1, [Use the regex included here])
  426. fi
  427. MC_CHECK_CFLAGS
  428. CFLAGS_OPTS=""
  429. if test "x$CFLAGS" = "x"; then
  430. CFLAGS_OPTS=" -O2 "
  431. fi
  432. if test x$USE_MAINTAINER_MODE = xyes; then
  433. CFLAGS_OPTS="-g3 -O -ggdb"
  434. AC_DEFINE(USE_MAINTAINER_MODE, 1, [Use maintainer mode])
  435. fi
  436. AC_ARG_ENABLE(
  437. [werror],
  438. AC_HELP_STRING([--enable-werror], [Handle all compiler warnings as errors] )
  439. )
  440. if test "x$enable_werror" = xyes; then
  441. MC_CHECK_ONE_CFLAG([-Werror])
  442. fi
  443. CFLAGS="$mc_configured_cflags $CFLAGS_OPTS $CFLAGS"
  444. AC_SUBST(CFLAGS)
  445. AC_SUBST(CPPFLAGS)
  446. AC_SUBST(LDFLAGS)
  447. AC_SUBST(LIBS)
  448. dnl Libraries used only when building the mc binary
  449. AC_SUBST(MCLIBS)
  450. MAN_DATE=$(LC_ALL=C date "+%B %Y")
  451. AC_SUBST(MAN_DATE)
  452. AM_CONDITIONAL(USE_MAINTAINER_MODE, [test x"$USE_MAINTAINER_MODE" = xyes])
  453. AM_CONDITIONAL(USE_SCREEN_SLANG, [test x"$with_screen" = xslang])
  454. AM_CONDITIONAL(USE_EDIT, [test -n "$use_edit"])
  455. AM_CONDITIONAL(USE_DIFF, [test -n "$use_diff"])
  456. AM_CONDITIONAL(CHARSET, [test -n "$have_charset"])
  457. AM_CONDITIONAL(CONS_SAVER, [test -n "$cons_saver"])
  458. AC_CONFIG_FILES(
  459. [
  460. src/man2hlp/man2hlp
  461. ],
  462. [
  463. chmod +x src/man2hlp/man2hlp
  464. ])
  465. AC_CONFIG_FILES([
  466. Makefile
  467. contrib/Makefile
  468. contrib/dist/Makefile
  469. contrib/dist/debian/Makefile
  470. contrib/dist/gentoo/Makefile
  471. contrib/dist/redhat/Makefile
  472. contrib/dist/redhat/mc.spec
  473. contrib/dist/mc.qpg
  474. contrib/dist/pkginfo
  475. contrib/dist/prototype
  476. misc/Makefile
  477. misc/skins/Makefile
  478. misc/mc.ext
  479. src/Makefile
  480. src/consaver/Makefile
  481. src/editor/Makefile
  482. src/man2hlp/Makefile
  483. src/viewer/Makefile
  484. src/diffviewer/Makefile
  485. lib/Makefile
  486. lib/filehighlight/Makefile
  487. lib/mcconfig/Makefile
  488. lib/search/Makefile
  489. lib/skin/Makefile
  490. lib/strutil/Makefile
  491. lib/tty/Makefile
  492. lib/vfs/Makefile
  493. lib/vfs/mc-vfs/Makefile
  494. lib/vfs/mc-vfs/extfs/Makefile
  495. lib/vfs/mc-vfs/extfs/a+
  496. lib/vfs/mc-vfs/extfs/apt+
  497. lib/vfs/mc-vfs/extfs/audio
  498. lib/vfs/mc-vfs/extfs/deb
  499. lib/vfs/mc-vfs/extfs/deba
  500. lib/vfs/mc-vfs/extfs/debd
  501. lib/vfs/mc-vfs/extfs/dpkg+
  502. lib/vfs/mc-vfs/extfs/iso9660
  503. lib/vfs/mc-vfs/extfs/hp48+
  504. lib/vfs/mc-vfs/extfs/lslR
  505. lib/vfs/mc-vfs/extfs/mailfs
  506. lib/vfs/mc-vfs/extfs/patchfs
  507. lib/vfs/mc-vfs/extfs/rpms+
  508. lib/vfs/mc-vfs/extfs/s3+
  509. lib/vfs/mc-vfs/extfs/uace
  510. lib/vfs/mc-vfs/extfs/ualz
  511. lib/vfs/mc-vfs/extfs/uar
  512. lib/vfs/mc-vfs/extfs/uarc
  513. lib/vfs/mc-vfs/extfs/uarj
  514. lib/vfs/mc-vfs/extfs/uc1541
  515. lib/vfs/mc-vfs/extfs/uha
  516. lib/vfs/mc-vfs/extfs/ulha
  517. lib/vfs/mc-vfs/extfs/urar
  518. lib/vfs/mc-vfs/extfs/uzip
  519. lib/vfs/mc-vfs/extfs/uzoo
  520. lib/vfs/mc-vfs/fish/Makefile
  521. misc/syntax/Makefile
  522. doc/Makefile
  523. doc/hints/Makefile
  524. doc/man/mc.1 doc/man/mcedit.1 doc/man/mcview.1 doc/man/Makefile
  525. doc/man/es/mc.1 doc/man/es/Makefile
  526. doc/man/hu/mc.1 doc/man/hu/Makefile
  527. doc/man/it/mc.1 doc/man/it/Makefile
  528. doc/man/pl/mc.1 doc/man/pl/Makefile
  529. doc/man/ru/mc.1 doc/man/ru/Makefile
  530. doc/man/sr/mc.1 doc/man/sr/Makefile
  531. doc/hlp/Makefile
  532. doc/hlp/es/Makefile
  533. doc/hlp/hu/Makefile
  534. doc/hlp/it/Makefile
  535. doc/hlp/pl/Makefile
  536. doc/hlp/ru/Makefile
  537. doc/hlp/sr/Makefile
  538. intl/Makefile
  539. po/Makefile.in
  540. ])
  541. AC_OUTPUT
  542. echo "
  543. Configuration:
  544. Source code location: ${srcdir}
  545. Compiler: ${CC}
  546. Compiler flags: ${CFLAGS}
  547. File system: ${vfs_type}
  548. ${vfs_flags}
  549. Screen library: ${screen_msg}
  550. Mouse support: ${mouse_lib}
  551. X11 events support: ${textmode_x11_support}
  552. With subshell support: ${subshell}
  553. Internal editor: ${edit_msg}
  554. Diff viewer: ${diff_msg}
  555. Support for charset: ${charset_msg}
  556. Search type: ${SEARCH_TYPE}
  557. "