123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731 |
- dnl
- dnl Configure.in file for the Midnight Commander
- dnl
- AC_INIT([GNU Midnight Commander], [], [mc-devel@gnome.org])
- AC_PREREQ(2.52)
- AC_CONFIG_SRCDIR(src/main.c)
- AC_CONFIG_AUX_DIR(config)
- AM_INIT_AUTOMAKE(mc, 4.6.0-pre1a)
- AM_CONFIG_HEADER(config.h)
- AM_MAINTAINER_MODE
- AC_CANONICAL_HOST
- AC_AIX
- AC_MINIX
- AC_ISC_POSIX
- AC_PROG_CC_STDC
- dnl
- dnl Check if the user requested to compile with glib 2.x. If not, use
- dnl glib 1.2.x. This check should be kept close to the beginning, as it
- dnl fails for the users without any glib.
- dnl
- AC_ARG_WITH(glib2, [ --with-glib2 Use glib 2.x [[no]]])
- if test "x$with_glib2" = "xyes" ; then
- PKG_CHECK_MODULES(GLIB, "glib-2.0")
- else
- dnl This temporary variable is a workaround for a bug in Autoconf-2.53
- glib_path=$PATH:/usr/local/bin
- dnl Klugde for FreeBSD, where glib-config is renamed to glib12-config.
- AC_PATH_PROGS([GLIB_CONFIG], [glib-config glib12-config],,[$glib_path])
- AC_ARG_VAR([GLIB_CONFIG], [Path to glib-config (version 1.2.x only)])
- AM_PATH_GLIB(1.2.6,,[AC_MSG_ERROR([Test for glib failed.
- GNU Midnight Commander requires glib 1.2.6 or above.])])
- fi
- AC_HEADER_MAJOR
- AC_C_CONST
- AC_SYS_LARGEFILE
- AC_PROG_LN_S
- AC_CHECK_TOOL(AR, ar, ar)
- dnl Only list browsers here that can be run in background (i.e. with `&')
- AC_CHECK_PROGS(X11_WWW, [gnome-moz-remote mozilla konqueror opera netscape])
- dnl
- dnl Ovverriding mmap support. This has to be before AC_FUNC_MMAP is used.
- dnl We use only part of the functionality of mmap, so on AIX,
- dnl it's possible to use mmap, even if it doesn't pass the autoconf test.
- dnl
- AC_ARG_WITH(mmap,
- [ --with-mmap Force using the mmap call (only useful on AIX)],
- [case $withval in
- yes)
- ac_cv_func_mmap_fixed_mapped=yes
- AC_MSG_NOTICE([forcing MMAP support])
- ;;
- no)
- ac_cv_func_mmap_fixed_mapped=no
- AC_MSG_NOTICE([disabling MMAP support])
- ;;
- esac])
- AC_FUNC_MMAP
- ALL_LINGUAS="az be bg ca cs da de el es es_ES eu fi fr hu it ja ko lv \
- nl no pl pt pt_BR ro ru sk sl sv uk ta tr wa zh_CN zh_TW"
- dnl
- dnl Internationalization
- dnl
- AM_GNU_GETTEXT
- AM_GNU_GETTEXT_VERSION(0.11.5)
- if test "x$USE_INCLUDED_LIBINTL" = xyes; then
- CPPFLAGS="$CPPFLAGS -I\$(top_builddir)/intl -I\$(top_srcdir)/intl"
- fi
- dnl
- dnl Hack to make extraconf.h visible even if compiling outside srcdir.
- dnl
- CPPFLAGS="$CPPFLAGS -I\$(top_srcdir)"
- dnl
- dnl Enforce coding standards
- dnl
- if test "x$GCC" = xyes; then
- CFLAGS="$CFLAGS -Wall"
- fi
- dnl
- dnl OS specific flags.
- dnl
- posix_libs=""
- case $host_os in
- aux*)
- # A/UX
- posix_libs="-lposix"
- AC_DEFINE(_POSIX_SOURCE)
- ;;
- sco*)
- AC_DEFINE(SCO_FLAVOR, 1, [Define if you want to turn on SCO-specific code])
- AC_DEFINE(_SVID3, 1, [Needs to be defined on SCO])
- ;;
- esac
- AC_PROG_INSTALL
- AC_CHECK_HEADERS([unistd.h string.h memory.h crypt.h grp.h limits.h \
- malloc.h stdlib.h termios.h utime.h fcntl.h pwd.h sys/statfs.h \
- sys/time.h sys/timeb.h sys/select.h sys/ioctl.h stropts.h \
- arpa/inet.h])
- AC_HEADER_TIME
- AC_HEADER_SYS_WAIT
- AC_HEADER_DIRENT
- AC_HEADER_STDC
- dnl Missing structure components
- AC_STRUCT_ST_BLKSIZE
- AC_STRUCT_ST_BLOCKS
- AC_STRUCT_ST_RDEV
- dnl
- dnl Check availability of some functions
- dnl
- AC_CHECK_FUNCS([strerror statfs strftime \
- memmove pwdauth truncate initgroups putenv \
- memset memcpy tcsetattr tcgetattr cfgetospeed \
- sigaction sigemptyset sigprocmask sigaddset \
- sysconf setuid setreuid telldir seekdir])
- dnl
- dnl getpt is a GNU Extension (glibc 2.1.x)
- dnl
- AC_CHECK_FUNCS(getpt)
- dnl
- dnl On SCO and some SVR4, crypt is on libcrypt.a
- dnl grantpt in libpt.a
- dnl
- LCRYPT=""
- AC_CHECK_FUNCS(crypt, , [
- AC_CHECK_LIB(crypt, crypt, [LCRYPT="-lcrypt"], [
- AC_CHECK_LIB(crypt_i, crypt, [LCRYPT="-lcrypt_i"])])])
- AC_SUBST(LCRYPT)
- AC_CHECK_FUNCS(grantpt, , [AC_CHECK_LIB(pt, grantpt)])
- dnl replacing lstat with statlstat on sco makes it more portable between
- dnl sco clones
- AC_CHECK_FUNCS(statlstat)
- dnl
- dnl If running under AIX, AC_AIX does not tell us that
- dnl
- AC_MSG_CHECKING([for AIX defines])
- AC_EGREP_CPP(yes,
- [#if defined(AIX) || defined(_AIX) || defined(__aix__) || defined(aix)
- yes
- #endif
- ], [
- AC_DEFINE(IS_AIX, 1, [Define if compiling for AIX])
- AC_MSG_RESULT(yes)
- ], [AC_MSG_RESULT(no)])
- dnl
- dnl This is from GNU fileutils, check aclocal.m4 for more information
- dnl
- AC_GET_FS_INFO
- dnl
- dnl Missing typedefs and replacements
- dnl
- AC_TYPE_MODE_T
- AC_CHECK_TYPE(umode_t, int)
- AC_CHECK_TYPE(off_t, long)
- AC_TYPE_PID_T
- AC_TYPE_UID_T
- AC_CHECK_TYPE(nlink_t, unsigned int)
- AC_FUNC_ALLOCA
- AC_FUNC_STRCOLL
- dnl
- dnl X11 support.
- dnl
- textmode_x11_support="no"
- AC_ARG_WITH(tm-x-support,
- [ --with-tm-x-support Get keyboard events from X Window System [[no]]],
- [if test x$withval = xyes; then
- AC_PATH_XTRA
- CPPFLAGS="$CPPFLAGS $X_CFLAGS"
- MCLIBS="$X_LIBS $X_PRE_LIBS -lX11 $X_EXTRA_LIBS"
- AC_DEFINE(HAVE_TEXTMODE_X11_SUPPORT, 1,
- [Define to enable getting events from X Window System])
- textmode_x11_support="yes"
- fi
- ])
- dnl
- dnl Network related functions
- dnl
- AC_CHECK_LIB(nsl, t_accept)
- AC_CHECK_LIB(socket, socket)
- have_socket=no
- AC_CHECK_FUNCS(socket, have_socket=yes)
- if test $have_socket = no; then
- # socket is not in the default libraries. See if it's in some other.
- for lib in bsd socket inet; do
- AC_CHECK_LIB($lib, socket, [
- LIBS="$LIBS -l$lib"
- have_socket=yes
- AC_DEFINE(HAVE_SOCKET)
- break])
- done
- fi
- have_gethostbyname=no
- AC_CHECK_FUNC(gethostbyname, [have_gethostbyname=yes])
- if test $have_gethostbyname = no; then
- # gethostbyname is not in the default libraries. See if it's in some other.
- for lib in bsd socket inet; do
- AC_CHECK_LIB([$lib], [gethostbyname],
- [LIBS="$LIBS -l$lib"; have_gethostbyname=yes; break])
- done
- fi
- AC_CHECK_FUNCS(socketpair)
- dnl
- dnl Sequent wants getprocessstats
- dnl
- AC_CHECK_LIB(seq, get_process_stats, [
- LIBS="$LIBS -lseq"
- AC_DEFINE(HAVE_GET_PROCESS_STATS, 1,
- [Define if you have function `get_process_stats' and
- have to use that instead of gettimeofday])])
- MC_VFS_CHECKS
- vfs_type="normal"
- if test x$use_vfs = xyes; then
- AC_MSG_NOTICE([enabling VFS code])
- vfs_type="Midnight Commander Virtual File System"
- fi
- dnl This should be unadorned "slang" or "ncurses"
- screen_type=""
- dnl Screen manager name (for the output only)
- screen_manager=unknown
- mouse_lib="xterm only"
- case $host_os in
- linux*)
- AC_ARG_WITH(gpm-mouse,
- [ --with-gpm-mouse[[=base-dir]] Compile with gpm mouse support (Linux only)
- [[yes if found]]],
- [if test x$withval != xno
- then
- if test x$withval != xyes
- then
- LDFLAGS="$LDFLAGS -L$withval/lib"
- CPPFLAGS="$CPPFLAGS -I$withval/include"
- fi
- AC_DEFINE(HAVE_LIBGPM, 1,
- [Define to enable gpm mouse support on Linux])
- mouse_lib="GPM and xterm"
- MCLIBS="-lgpm $MCLIBS"
- fi],
- [AC_CHECK_LIB(gpm, Gpm_Repeat,
- [AC_DEFINE(HAVE_LIBGPM)
- mouse_lib="GPM and xterm"
- MCLIBS="-lgpm $MCLIBS"],
- [AC_MSG_WARN([libgpm is missing or older than 0.18])],
- [$LIBS])
- ])
- ;;
- esac
- AC_ARG_WITH(ncurses,
- [ --with-ncurses[[=base-dir]] Compile with ncurses [[no]]],
- [if test x$withval != xno; then
- if test x$withval != xyes; then
- LDFLAGS="$LDFLAGS -L$withval/lib"
- CPPFLAGS="$CPPFLAGS -I$withval/include"
- fi
- AC_CHECK_HEADERS([ncurses/curses.h ncurses.h curses.h],
- [ncurses_h_found=yes; break])
- if test -z "$ncurses_h_found"; then
- AC_MSG_ERROR([Could not find ncurses header])
- fi
- dnl curses_version is specific to ncurses, it's not in old curses
- AC_CHECK_LIB(ncurses, has_colors, [MCLIBS="$MCLIBS -lncurses"],
- [AC_MSG_ERROR([Could not find ncurses library])])
- screen_type="ncurses"
- screen_manager="ncurses"
- AC_DEFINE(USE_NCURSES, 1,
- [Define to use ncurses for screen management])
- fi
- ])
- AC_ARG_WITH(hsc,
- [ --with-hsc Compile with support for HSC firewall instead
- of FTP proxy [[no]]],
- [if test x$withval = xyes; then
- AC_DEFINE(HSC_PROXY, 1,
- [Define if you want to use the HSC firewall])
- fi
- ])
- dnl
- dnl Check for the -mandoc package
- dnl
- AC_CHECK_PROG(HAVE_nroff, nroff, true, false)
- if $HAVE_nroff; then
- AC_MSG_CHECKING([for manual formatting macros])
- AC_CACHE_VAL(ac_cv_mandoc, [
- nroff -mandoc < /dev/null > /dev/null 2>&1
- if test $? = 0
- then
- ac_cv_mandoc=-mandoc
- else
- ac_cv_mandoc=-man
- fi
- ])
- MANDOC=$ac_cv_mandoc
- AC_MSG_RESULT([$MANDOC])
- else
- MANDOC=-man
- fi
- AC_SUBST(MANDOC)
- dnl
- dnl Check if nroff accepts -Tlatin1 or -Tascii
- dnl
- if $HAVE_nroff; then
- AC_MSG_CHECKING([if nroff accepts -Tlatin1 or -Tascii])
- AC_CACHE_VAL(ac_cv_nroff_tascii, [
- nroff -Tlatin1 < /dev/null > /dev/null 2>&1 /dev/null
- if test $? = 0
- then
- ac_cv_nroff_tascii=" -Tlatin1"
- else
- nroff -Tascii < /dev/null > /dev/null 2>&1 /dev/null
- if test $? = 0
- then
- ac_cv_nroff_tascii=" -Tascii"
- else
- ac_cv_nroff_tascii=""
- fi
- fi
- ])
- if test "x$ac_cv_nroff_tascii" = x; then
- AC_MSG_RESULT([no])
- else
- AC_MSG_RESULT([yes,$ac_cv_nroff_tascii])
- fi
- fi
- TROFFASCII="$ac_cv_nroff_tascii"
- AC_SUBST(TROFFASCII)
- dnl
- dnl Check for - option to file
- dnl
- AC_CHECK_PROG(HAVE_FILECMD, file, true, false)
- if $HAVE_FILECMD; then
- AC_MSG_CHECKING([for - option to file command])
- AC_CACHE_VAL(ac_cv_filestdin, [[
- cat > conftest.c <<\EOF
- /* A comment */
- #if 0
- #endif
- void main(void)
- { return; }
- EOF
- cat > conftest.sed <<\EOF
- s/^[^:]*:[ ]*//
- s/[ ]*$//
- EOF
- filehyphen_1=`file conftest.c 2>/dev/null | sed -f conftest.sed`
- filehyphen_2=`cat conftest.c | file - 2>/dev/null | sed -f conftest.sed`
- if test "x$filehyphen_1" = "x$filehyphen_2"; then
- ac_cv_filestdin=yes
- else
- ac_cv_filestdin=no
- fi
- rm conftest.c conftest.sed
- ]])
- if test x$ac_cv_filestdin = xyes; then
- AC_DEFINE(FILE_STDIN, 1,
- [Define if the file command accepts - for stdin])
- fi
- filestdin=$ac_cv_filestdin
- AC_MSG_RESULT([$filestdin])
- dnl
- dnl Check for -L option to file
- dnl
- AC_MSG_CHECKING([for -L option to file command])
- AC_CACHE_VAL(ac_cv_filel, [
- file -L . > /dev/null 2>&1
- if test $? = 0
- then
- ac_cv_filel=yes
- else
- ac_cv_filel=no
- fi
- ])
- if test x$ac_cv_filel = xyes; then
- AC_DEFINE(FILE_L, 1, [Define if the file command accepts the -L option])
- fi
- filel=$ac_cv_filel
- AC_MSG_RESULT([$filel])
- fi
- AC_MSG_CHECKING([for subshell support])
- AC_ARG_WITH(subshell,
- [ --with-subshell Compile in concurrent subshell [[yes]]
- --with-subshell=optional Don't run concurrent shell by default [[no]]],
- [result=no
- if test x$withval = xoptional
- then
- AC_DEFINE(SUBSHELL_OPTIONAL, 1,
- [Define to make subshell support optional])
- result="optional"
- fi
- if test x$withval = xyes
- then
- result="yes"
- fi],
- [dnl Default: enable the subshell support
- result="yes"
- ])
- if test "x$result" != xno; then
- AC_DEFINE(HAVE_SUBSHELL_SUPPORT, 1,
- [Define to enable subshell support])
- fi
- AC_MSG_RESULT([$result])
- subshell="$result"
- if test "x$screen_type" != xncurses; then
- slang_check_lib=true
- slang_term=""
- slang_use_system_installed_lib=false
- AC_CHECK_LIB(slang,SLang_init_tty,
- [AC_CHECK_HEADERS([slang.h slang/slang.h],
- [slang_h_found=yes; break])
- if test "x$slang_h_found" = xyes; then
- slang_use_system_installed_lib=true
- slang_check_lib=false
- fi
- ])
- fi
- AC_ARG_WITH(slang,
- [ --with-slang Compile with S-Lang screen manager [[yes]]],
- [if test x$withval = xyes; then
- AC_WITH_SLANG
- fi]
- )
- AC_ARG_WITH(included-slang,
- [ --with-included-slang Use S-Lang library included with mc sources
- [[use installed library if found]]],
- [if test x$withval = xyes; then
- slang_use_system_installed_lib=false
- slang_check_lib=true
- fi]
- )
- AC_ARG_WITH(termcap,
- [ --with-termcap Same as above, and try using termcap database [[no]]],
- [if test x$withval = xyes; then
- AC_USE_TERMCAP
- slang_check_lib=false
- slang_use_system_installed_lib=false
- fi]
- )
- dnl
- dnl Internal editor support.
- dnl
- AC_ARG_WITH(edit,
- [ --with-edit Enable internal editor [[yes]]])
- if test x$with_edit != xno; then
- AC_DEFINE(USE_INTERNAL_EDIT, 1, [Define to enable internal editor])
- use_edit=yes
- EDIT_msg="yes"
- AC_MSG_NOTICE([using internal editor])
- else
- EDIT_msg="no"
- fi
- if test $use_vfs = yes; then
- AC_ARG_WITH(ext2undel,
- [ --with-ext2undel Compile with ext2 undelete code [[yes if found]]],
- [if test x$withval != xno; then
- if test x$withval != xyes; then
- LDFLAGS="$LDFLAGS -L$withval/lib"
- CPPFLAGS="$CPPFLAGS -I$withval/include"
- fi
- AC_EXT2_UNDEL
- fi],[
- dnl Default: detect
- AC_CHECK_LIB(ext2fs, ext2fs_close, [AC_EXT2_UNDEL], , [-lcom_err])
- ])
- fi
- dnl Ncurses specific checks
- dnl
- dnl If ncurses exports the ESCDELAY variable it should be set to 0
- dnl or you'll have to press Esc three times to dismiss a dialog box.
- dnl
- if test "x$screen_type" = xncurses; then
- save_LIBS="$LIBS"
- LIBS="$MCLIBS $LIBS"
- AC_CACHE_CHECK([for ESCDELAY variable],
- [mc_cv_ncurses_escdelay],
- [AC_TRY_COMPILE([], [
- extern int ESCDELAY;
- int main ()
- {
- ESCDELAY = 0;
- }
- ],
- [mc_cv_ncurses_escdelay=yes],
- [mc_cv_ncurses_escdelay=no]
- )
- ])
- if test "$mc_cv_ncurses_escdelay" = yes; then
- AC_DEFINE(HAVE_ESCDELAY, 1,
- [Define if ncurses has ESCDELAY variable])
- fi
- AC_CHECK_FUNCS(resizeterm)
- LIBS="$save_LIBS"
- fi
- if test "x$screen_type" = "x"; then
- AC_WITH_SLANG
- fi
- dnl
- dnl The variables used for expanding the auto saver.
- dnl
- cons_saver=""
- install_saver="no"
- PAMLIBS=""
- case $host_os in
- linux*)
- cons_saver="cons.saver"
- install_saver="yes"
- dnl
- dnl On Linux, check for PAM authentication available
- dnl
- AC_CHECK_LIB(pam, pam_start, [
- AC_DEFINE(HAVE_PAM, 1,
- [Define if PAM (Pluggable Authentication Modules) is available])
- PAMLIBS="-lpam -ldl"
- ],[],[-ldl])
- ;;
- esac
- AC_SUBST(cons_saver)
- AC_SUBST(PAMLIBS)
- dnl
- dnl User visible support for charset conversion.
- dnl
- AC_ARG_ENABLE([charset],
- [ --enable-charset Support for charset selection and conversion [[no]]])
- have_charset=
- if test "x$enable_charset" = xyes; then
- if test "x$am_cv_func_iconv" != xyes; then
- AC_MSG_WARN([Cannot enable charset support because iconv function is missing])
- else
- AC_DEFINE(HAVE_CHARSET, 1,
- [Define to enable charset selection and conversion])
- have_charset=yes
- fi
- fi
- if test "$GLIBC21" != yes; then
- AC_DEFINE(USE_INCLUDED_REGEX, 1, [Use the regex included here])
- fi
- dnl
- dnl This code should be moved to the ac_WITH_SLANG
- dnl
- dnl We check for the existance of setupterm on curses library
- dnl this is required to load certain definitions on some termcaps
- dnl editions (AIX and OSF/1 I seem to remember).
- dnl Note that we avoid using setupterm
- if test "x$screen_type" = xslang; then
- case $host_os in
- linux*)
- ;;
- *)
- AC_CHECK_LIB(curses,setupterm,
- [AC_TRY_COMPILE([
- #include <curses.h>
- #include <term.h>],[
- if (key_end == parm_insert_line)
- return 1;
- return 0;
- ],
- [MCLIBS="$MCLIBS -lcurses"
- AC_DEFINE(USE_SETUPTERM, 1,
- [Define to use function `setupterm'
- from `curses' library in S-Lang])])
- ])
- esac
- fi
- LIBS="$LIBS $posix_libs"
- AC_SUBST(CFLAGS)
- AC_SUBST(CPPFLAGS)
- AC_SUBST(LDFLAGS)
- AC_SUBST(LIBS)
- dnl Libraries used only when building the mc binary
- AC_SUBST(MCLIBS)
- dnl Version for the RedHat package, without dashes
- RH_VERSION=`echo $VERSION | sed 's/-//'`
- AC_SUBST(RH_VERSION)
- if test -n "$use_smbfs"; then
- AC_CONFIG_SUBDIRS([vfs/samba])
- fi
- AM_CONDITIONAL(USE_EDIT, [test -n "$use_edit"])
- AM_CONDITIONAL(USE_VFS, [test "x$use_vfs" = xyes])
- AM_CONDITIONAL(USE_VFS_NET, [test x"$use_net_code" = xtrue])
- AM_CONDITIONAL(USE_UNDEL_FS, [test -n "$use_undelfs"])
- AM_CONDITIONAL(USE_SAMBA_FS, [test -n "$use_smbfs"])
- AM_CONDITIONAL(USE_MCFS, [test -n "$use_mcfs"])
- AM_CONDITIONAL(INCLUDED_SLANG,
- [test "x$slang_use_system_installed_lib" = xfalse])
- AM_CONDITIONAL(CHARSET, [test -n "$have_charset"])
- AM_CONDITIONAL(CONS_SAVER, [test -n "$cons_saver"])
- AH_BOTTOM([#include <extraconf.h>])
- AC_CONFIG_FILES([
- Makefile
- mc.spec
- doc/Makefile
- vfs/Makefile
- vfs/extfs/Makefile
- lib/Makefile
- src/Makefile
- slang/Makefile
- edit/Makefile
- syntax/Makefile
- pc/Makefile
- m4/Makefile
- lib/mc.ext
- lib/mc.sh
- lib/mc.csh
- vfs/extfs/deb
- vfs/extfs/ftplist
- vfs/extfs/lslR
- vfs/extfs/uar
- vfs/extfs/ucpio
- vfs/extfs/ulha
- vfs/extfs/uha
- vfs/extfs/urar
- vfs/extfs/uzoo
- doc/mc.1 doc/mcedit.1 doc/mcserv.8
- doc/es/mc.1 doc/es/Makefile
- doc/hu/Makefile
- doc/it/mc.1 doc/it/Makefile
- doc/pl/mc.1 doc/pl/Makefile
- doc/ru/mc.1 doc/ru/Makefile
- intl/Makefile
- po/Makefile.in
- ])
- AC_OUTPUT
- if test "x$screen_type" = xslang; then
- screen_manager="${screen_manager}${slang_term}"
- fi
- echo "
- Configuration:
- Source code location: ${srcdir}
- Compiler: ${CC}
- Compiler flags: ${CFLAGS}
- File system: ${vfs_type}
- ${vfs_flags}
- Screen manager: ${screen_manager}
- Install console saver: ${install_saver}
- Mouse support: ${mouse_lib}
- X11 events support: ${textmode_x11_support}
- With subshell support: ${subshell}
- Internal editor: ${EDIT_msg}
- Install path: ${prefix}/bin, ${prefix}/lib/mc
- "
|