configure.ac 14 KB

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