configure.ac 15 KB

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