configure.ac 14 KB

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