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