1998-02-27 07:54:42 +03:00
|
|
|
dnl
|
|
|
|
dnl Configure.in file for the Midnight Commander
|
|
|
|
dnl
|
2000-09-16 03:57:10 +04:00
|
|
|
|
2001-09-12 23:18:38 +04:00
|
|
|
AC_INIT(GNU Midnight Commander, 4.5.99a, mc-devel@gnome.org)
|
|
|
|
AC_PREREQ(2.52)
|
|
|
|
AC_CONFIG_SRCDIR(src/main.c)
|
|
|
|
AC_CONFIG_AUX_DIR(config)
|
2001-08-24 12:28:34 +04:00
|
|
|
AM_INIT_AUTOMAKE(mc, 4.5.99a)
|
2001-09-12 23:18:38 +04:00
|
|
|
|
2000-08-24 18:13:00 +04:00
|
|
|
AM_CONFIG_HEADER(config.h)
|
2000-09-12 23:31:56 +04:00
|
|
|
AM_MAINTAINER_MODE
|
2000-08-24 18:13:00 +04:00
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
AC_PROG_LN_S
|
2001-09-12 23:18:38 +04:00
|
|
|
AC_CANONICAL_HOST
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
AC_AIX
|
|
|
|
AC_MINIX
|
|
|
|
AC_ISC_POSIX
|
2001-08-25 07:14:20 +04:00
|
|
|
|
2001-09-07 08:25:02 +04:00
|
|
|
AC_PROG_CC_STDC
|
2001-08-25 07:14:20 +04:00
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
AC_HEADER_MAJOR
|
|
|
|
AC_C_CONST
|
2001-06-26 03:52:47 +04:00
|
|
|
|
2001-09-07 08:25:02 +04:00
|
|
|
AC_SYS_LARGEFILE
|
2001-06-26 03:52:47 +04:00
|
|
|
|
2001-03-15 04:18:14 +03:00
|
|
|
AC_CHECK_TOOL(AR, ar, ar)
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2001-09-13 02:10:37 +04:00
|
|
|
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])
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2001-10-24 12:38:03 +04:00
|
|
|
if test x$ALL_LINGUAS = x; then
|
2001-09-01 23:56:19 +04:00
|
|
|
ALL_LINGUAS="az ca cs da de el es es_ES fi fr hu it ja ko lv nl no pl pt_BR ro ru sk sl sv uk ta tr wa zh_TW zh_CN.GB2312"
|
2001-10-24 12:38:03 +04:00
|
|
|
fi
|
1999-07-07 05:13:05 +04:00
|
|
|
|
2001-06-29 12:09:37 +04:00
|
|
|
dnl
|
|
|
|
dnl Internationalization
|
|
|
|
dnl
|
|
|
|
AM_GNU_GETTEXT
|
|
|
|
if test "x$USE_INCLUDED_LIBINTL" = xyes; then
|
2001-09-10 23:31:14 +04:00
|
|
|
CPPFLAGS="$CPPFLAGS -I\$(top_builddir)/intl -I\$(top_srcdir)/intl"
|
2001-06-29 12:09:37 +04:00
|
|
|
fi
|
|
|
|
|
|
|
|
dnl
|
|
|
|
dnl Hack to make extraconf.h visible even if compiling outside srcdir.
|
|
|
|
dnl
|
|
|
|
CPPFLAGS="$CPPFLAGS -I\$(top_srcdir)"
|
1999-07-07 05:13:05 +04:00
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
dnl
|
2000-09-16 03:57:10 +04:00
|
|
|
dnl Enforce coding standards
|
1998-02-27 07:54:42 +03:00
|
|
|
dnl
|
2000-09-16 03:57:10 +04:00
|
|
|
if test "x$GCC" = xyes; then
|
|
|
|
CFLAGS="$CFLAGS -Wall"
|
1998-02-27 07:54:42 +03:00
|
|
|
fi
|
1998-04-07 23:08:31 +04:00
|
|
|
|
1998-10-14 06:56:18 +04:00
|
|
|
dnl
|
|
|
|
dnl We now use glib
|
|
|
|
dnl
|
2001-01-11 21:57:44 +03:00
|
|
|
AM_PATH_GLIB(1.2.0,,[AC_MSG_ERROR([Test for GLIB failed. MC requires GLIB.])])
|
1998-10-14 06:56:18 +04:00
|
|
|
LIBS="$LIBS $GLIB_LIBS"
|
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
dnl
|
2001-05-27 00:36:24 +04:00
|
|
|
dnl OS specific flags.
|
1998-02-27 07:54:42 +03:00
|
|
|
dnl
|
|
|
|
|
|
|
|
posix_libs=""
|
2001-01-13 09:55:24 +03:00
|
|
|
case $host_os in
|
|
|
|
aux*)
|
2001-05-27 00:36:24 +04:00
|
|
|
# A/UX
|
1998-02-27 07:54:42 +03:00
|
|
|
posix_libs="-lposix"
|
|
|
|
AC_DEFINE(_POSIX_SOURCE)
|
2001-05-27 00:36:24 +04:00
|
|
|
;;
|
|
|
|
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])
|
|
|
|
;;
|
2001-01-13 09:55:24 +03:00
|
|
|
esac
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
AC_PROG_INSTALL
|
2001-02-20 19:29:23 +03:00
|
|
|
AC_CHECK_HEADERS([unistd.h string.h memory.h crypt.h grp.h limits.h \
|
2001-09-07 21:23:49 +04:00
|
|
|
malloc.h stdlib.h termios.h utime.h fcntl.h pwd.h sys/statfs.h \
|
2001-09-11 06:03:19 +04:00
|
|
|
sys/time.h sys/timeb.h sys/select.h sys/ioctl.h stropts.h])
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2001-02-20 19:29:23 +03:00
|
|
|
AC_HEADER_TIME
|
1998-02-27 07:54:42 +03:00
|
|
|
AC_HEADER_SYS_WAIT
|
|
|
|
AC_HEADER_DIRENT
|
|
|
|
AC_SHORT_D_NAME_LEN
|
|
|
|
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
|
|
|
|
|
2001-09-11 05:42:08 +04:00
|
|
|
AC_CHECK_FUNCS([strerror statfs strcasecmp strncasecmp strftime \
|
2001-06-19 23:26:29 +04:00
|
|
|
strdup memmove pwdauth truncate initgroups putenv \
|
|
|
|
memset memcpy tcsetattr tcgetattr cfgetospeed \
|
|
|
|
sigaction sigemptyset sigprocmask sigaddset \
|
2001-09-11 05:42:08 +04:00
|
|
|
sysconf setuid setreuid telldir seekdir])
|
1998-02-27 07:54:42 +03:00
|
|
|
|
1999-05-17 09:51:44 +04:00
|
|
|
dnl
|
|
|
|
dnl getpt is a GNU Extension (glibc 2.1.x)
|
|
|
|
dnl
|
|
|
|
AC_CHECK_FUNCS(getpt)
|
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
SHADOWLIB=
|
2001-01-13 09:55:24 +03:00
|
|
|
case $host_os in
|
|
|
|
linux*)
|
|
|
|
AC_CHECK_LIB(shadow,pw_encrypt,
|
|
|
|
[shadow_header=yes
|
|
|
|
AC_CHECK_HEADERS(shadow.h,,
|
|
|
|
[AC_CHECK_HEADERS(shadow/shadow.h,,
|
|
|
|
[shadow_header=no])])
|
|
|
|
if test $shadow_header = yes; then
|
2001-09-11 04:27:03 +04:00
|
|
|
AC_DEFINE(LINUX_SHADOW, 1,
|
|
|
|
[Define to use shadow passwords on Linux])
|
2001-01-13 09:55:24 +03:00
|
|
|
SHADOWLIB=-lshadow
|
|
|
|
fi])
|
|
|
|
;;
|
|
|
|
esac
|
1998-02-27 07:54:42 +03:00
|
|
|
AC_SUBST(SHADOWLIB)
|
|
|
|
|
|
|
|
NEED_CRYPT_PROTOTYPE=yes
|
|
|
|
if test x$ac_cv_header_crypt_h = xyes; then
|
2001-06-14 01:33:44 +04:00
|
|
|
AC_TRY_WARNINGS([#include <crypt.h>], [char *p = crypt("xxx", "yyy");
|
|
|
|
if (p)
|
|
|
|
return 0;],[
|
1998-02-27 07:54:42 +03:00
|
|
|
NEED_CRYPT_PROTOTYPE=no])
|
|
|
|
else
|
|
|
|
if test x$ac_cv_header_unistd_h = xyes; then
|
2001-06-14 01:33:44 +04:00
|
|
|
AC_TRY_WARNINGS([#include <unistd.h>], [char *p = crypt("xxx", "yyy");
|
|
|
|
if (p)
|
|
|
|
return 0;],[
|
1998-02-27 07:54:42 +03:00
|
|
|
NEED_CRYPT_PROTOTYPE=no])
|
|
|
|
fi
|
|
|
|
fi
|
2001-06-14 01:33:44 +04:00
|
|
|
if test x$NEED_CRYPT_PROTOTYPE = xyes; then
|
2001-09-11 04:27:03 +04:00
|
|
|
AC_DEFINE(NEED_CRYPT_PROTOTYPE, 1,
|
|
|
|
[Define if function `crypt' needs a prototype])
|
1998-02-27 07:54:42 +03:00
|
|
|
fi
|
|
|
|
|
|
|
|
dnl
|
1998-12-02 08:18:20 +03:00
|
|
|
dnl On SCO and some SVR4, crypt is on libcrypt.a
|
1998-02-27 07:54:42 +03:00
|
|
|
dnl grantpt in libpt.a
|
|
|
|
dnl
|
1998-12-02 08:18:20 +03:00
|
|
|
LCRYPT=""
|
1998-02-27 07:54:42 +03:00
|
|
|
AC_CHECK_FUNCS(crypt, , [
|
2001-09-13 23:40:40 +04:00
|
|
|
AC_CHECK_LIB(crypt, crypt, [LCRYPT="-lcrypt"], [
|
|
|
|
AC_CHECK_LIB(crypt_i, crypt, [LCRYPT="-lcrypt_i"])])])
|
1998-12-02 08:18:20 +03:00
|
|
|
AC_SUBST(LCRYPT)
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2000-09-16 03:57:10 +04:00
|
|
|
AC_CHECK_FUNCS(grantpt, , [AC_CHECK_LIB(pt, grantpt)])
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
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
|
2001-01-11 21:57:44 +03:00
|
|
|
AC_MSG_CHECKING([for AIX defines])
|
1998-02-27 07:54:42 +03:00
|
|
|
AC_EGREP_CPP(yes,
|
|
|
|
[#if defined(AIX) || defined(_AIX) || defined(__aix__) || defined(aix)
|
|
|
|
yes
|
|
|
|
#endif
|
|
|
|
], [
|
2001-05-29 07:00:02 +04:00
|
|
|
AC_DEFINE(IS_AIX, 1, [Define if compiling for AIX])
|
1998-02-27 07:54:42 +03:00
|
|
|
AC_MSG_RESULT(yes)
|
2001-01-11 21:57:44 +03:00
|
|
|
], [AC_MSG_RESULT(no)])
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
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
|
1998-03-23 20:49:04 +03:00
|
|
|
AC_CHECK_TYPE(nlink_t, unsigned int)
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
AC_FUNC_MMAP
|
|
|
|
AC_FUNC_ALLOCA
|
2001-09-11 05:42:08 +04:00
|
|
|
AC_FUNC_STRCOLL
|
1998-02-27 07:54:42 +03:00
|
|
|
|
1999-04-21 23:18:31 +04:00
|
|
|
dnl
|
2001-08-25 07:14:20 +04:00
|
|
|
dnl X11 support.
|
1999-04-21 23:18:31 +04:00
|
|
|
dnl
|
|
|
|
|
2001-08-25 07:14:20 +04:00
|
|
|
dnl These variables are only used when building the MC binary
|
1999-04-21 23:18:31 +04:00
|
|
|
MCCFLAGS=""
|
|
|
|
MCLIBS=""
|
|
|
|
AC_SUBST(MCCFLAGS)
|
|
|
|
AC_SUBST(MCLIBS)
|
|
|
|
|
|
|
|
textmode_x11_support="no"
|
|
|
|
AC_ARG_WITH(tm-x-support,
|
2001-08-25 07:14:20 +04:00
|
|
|
[--with-tm-x-support Try getting events from X Window System],
|
2001-01-11 21:57:44 +03:00
|
|
|
[if test x$withval = xyes; then
|
2001-09-11 06:35:45 +04:00
|
|
|
AC_PATH_XTRA
|
1999-04-21 23:18:31 +04:00
|
|
|
MCCFLAGS="$X_CFLAGS"
|
|
|
|
MCLIBS="$X_LIBS $X_PRE_LIBS -lX11 $X_EXTRA_LIBS"
|
2001-09-11 04:27:03 +04:00
|
|
|
AC_DEFINE(HAVE_TEXTMODE_X11_SUPPORT, 1,
|
|
|
|
[Define to enable getting events from X Window System])
|
1999-04-21 23:18:31 +04:00
|
|
|
textmode_x11_support="yes"
|
|
|
|
fi
|
2001-01-11 21:57:44 +03:00
|
|
|
])
|
1999-04-21 23:18:31 +04:00
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
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
|
2001-01-11 21:57:44 +03:00
|
|
|
AC_CHECK_FUNC(gethostbyname, [have_gethostbyname=yes])
|
1998-02-27 07:54:42 +03:00
|
|
|
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
|
2001-09-13 23:40:40 +04:00
|
|
|
AC_CHECK_LIB([$lib], [gethostbyname],
|
|
|
|
[LIBS="$LIBS -l$lib"; have_gethostbyname=yes; break])
|
1998-02-27 07:54:42 +03:00
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
|
|
|
AC_CHECK_FUNCS(socketpair)
|
|
|
|
|
|
|
|
dnl
|
|
|
|
dnl Sequent wants getprocessstats
|
|
|
|
dnl
|
|
|
|
AC_CHECK_LIB(seq, get_process_stats, [
|
|
|
|
LIBS="$LIBS -lseq"
|
2001-09-11 04:27:03 +04:00
|
|
|
AC_DEFINE(HAVE_GET_PROCESS_STATS, 1,
|
|
|
|
[Define if you have function `get_process_stats' and
|
|
|
|
have to use that instead of gettimeofday])])
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2001-08-25 07:14:20 +04:00
|
|
|
MC_VFS_CHECKS
|
2001-04-20 03:20:06 +04:00
|
|
|
|
|
|
|
dnl
|
|
|
|
dnl Install mcserv only if explicitly enabled
|
|
|
|
dnl
|
|
|
|
AC_ARG_ENABLE([mcserv-install],
|
|
|
|
[--enable-mcserv-install Install mcserv - Midnight Commander file server])
|
|
|
|
|
1998-07-24 10:39:59 +04:00
|
|
|
NETFILES=
|
1998-02-27 07:54:42 +03:00
|
|
|
if test $have_socket = yes; then
|
1998-07-24 10:39:59 +04:00
|
|
|
NETFILES="\$(NETFILES)"
|
1998-02-27 07:54:42 +03:00
|
|
|
fi
|
|
|
|
AC_SUBST(NETFILES)
|
|
|
|
|
1999-03-29 09:06:50 +04:00
|
|
|
vfs_type="normal"
|
|
|
|
if test $use_vfs = yes
|
|
|
|
then
|
2001-09-13 00:45:46 +04:00
|
|
|
AC_MSG_NOTICE([enabling VFS code])
|
1999-03-29 09:06:50 +04:00
|
|
|
vfs_type="Midnight Commander Virtual File System"
|
|
|
|
fi
|
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
screen_manager=unknown
|
|
|
|
search_ncurses=false
|
|
|
|
|
|
|
|
mouse_lib="xterm only"
|
2001-01-13 09:55:24 +03:00
|
|
|
case $host_os in
|
|
|
|
linux*)
|
|
|
|
AC_ARG_WITH(gpm-mouse,
|
|
|
|
[--with-gpm-mouse[=base-dir] Compile with gpm mouse support (Linux only)],
|
|
|
|
[if test x$withval != xno
|
1998-02-27 07:54:42 +03:00
|
|
|
then
|
|
|
|
if test x$withval != xyes
|
|
|
|
then
|
|
|
|
LIBS="$LIBS -L$withval/lib"
|
|
|
|
CPPFLAGS="$CPPFLAGS -I$withval/include"
|
|
|
|
fi
|
2001-09-11 04:27:03 +04:00
|
|
|
AC_DEFINE(HAVE_LIBGPM, 1,
|
|
|
|
[Define to enable gpm mouse support on Linux])
|
1998-02-27 07:54:42 +03:00
|
|
|
mouse_lib="GPM and xterm"
|
2001-09-11 01:16:40 +04:00
|
|
|
MCLIBS="-lgpm $MCLIBS"
|
2001-01-13 09:55:24 +03:00
|
|
|
fi],
|
|
|
|
[AC_CHECK_LIB(gpm, Gpm_Repeat,
|
|
|
|
[AC_DEFINE(HAVE_LIBGPM)
|
1998-02-27 07:54:42 +03:00
|
|
|
mouse_lib="GPM and xterm"
|
2001-09-11 01:16:40 +04:00
|
|
|
MCLIBS="-lgpm $MCLIBS"],
|
2001-01-13 09:55:24 +03:00
|
|
|
[AC_MSG_WARN([libgpm is missing or older than 0.18])],
|
2001-09-13 23:40:40 +04:00
|
|
|
[$LIBS])
|
2001-01-13 09:55:24 +03:00
|
|
|
])
|
|
|
|
;;
|
|
|
|
esac
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
AC_ARG_WITH(ncurses,
|
|
|
|
[--with-ncurses[=base-dir] Compile with ncurses/locate base dir],
|
2001-01-11 21:57:44 +03:00
|
|
|
[if test x$withval = xyes
|
1998-02-27 07:54:42 +03:00
|
|
|
then
|
|
|
|
search_ncurses=true
|
|
|
|
else
|
2001-09-11 05:29:29 +04:00
|
|
|
MCLIBS="$MCLIBS -L$withval/lib -lncurses"
|
1998-02-27 07:54:42 +03:00
|
|
|
CPPFLAGS="$CPPFLAGS -I$withval/include"
|
|
|
|
search_ncurses=false
|
|
|
|
screen_manager="ncurses"
|
|
|
|
AC_DEFINE(USE_NCURSES)
|
|
|
|
fi
|
2001-01-11 21:57:44 +03:00
|
|
|
])
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
AC_ARG_WITH(hsc,
|
|
|
|
[--with-hsc Compile with support for the HSC firewall],
|
2001-01-11 21:57:44 +03:00
|
|
|
[if test x$withval = xyes; then
|
2001-05-29 07:00:02 +04:00
|
|
|
AC_DEFINE(HSC_PROXY, 1,
|
|
|
|
[Define if you want to use the HSC firewall])
|
1998-02-27 07:54:42 +03:00
|
|
|
fi
|
2001-01-11 21:57:44 +03:00
|
|
|
])
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
dnl
|
|
|
|
dnl Check for the -mandoc package
|
|
|
|
dnl
|
|
|
|
AC_CHECK_PROG(HAVE_nroff, nroff, true, false)
|
|
|
|
if $HAVE_nroff; then
|
2001-01-11 21:57:44 +03:00
|
|
|
AC_MSG_CHECKING([for manual formatting macros])
|
1998-02-27 07:54:42 +03:00
|
|
|
AC_CACHE_VAL(ac_cv_mandoc, [
|
2001-10-18 08:54:42 +04:00
|
|
|
nroff -mandoc < /dev/null > /dev/null 2>&1
|
1998-02-27 07:54:42 +03:00
|
|
|
if test $? = 0
|
|
|
|
then
|
|
|
|
ac_cv_mandoc=-mandoc
|
|
|
|
else
|
|
|
|
ac_cv_mandoc=-man
|
|
|
|
fi
|
|
|
|
])
|
|
|
|
MANDOC=$ac_cv_mandoc
|
2001-09-13 00:45:46 +04:00
|
|
|
AC_MSG_RESULT([$MANDOC])
|
1998-02-27 07:54:42 +03:00
|
|
|
else
|
|
|
|
MANDOC=-man
|
|
|
|
fi
|
|
|
|
AC_SUBST(MANDOC)
|
|
|
|
|
|
|
|
dnl
|
1999-09-20 03:09:07 +04:00
|
|
|
dnl Check if nroff accepts -Tlatin1 or -Tascii
|
1998-02-27 07:54:42 +03:00
|
|
|
dnl
|
|
|
|
if $HAVE_nroff; then
|
2001-01-11 21:57:44 +03:00
|
|
|
AC_MSG_CHECKING([if nroff accepts -Tlatin1 or -Tascii])
|
1998-02-27 07:54:42 +03:00
|
|
|
AC_CACHE_VAL(ac_cv_nroff_tascii, [
|
1999-09-20 03:09:07 +04:00
|
|
|
nroff -Tlatin1 < /dev/null > /dev/null 2>&1 /dev/null
|
1998-02-27 07:54:42 +03:00
|
|
|
if test $? = 0
|
|
|
|
then
|
1999-09-20 03:09:07 +04:00
|
|
|
ac_cv_nroff_tascii=" -Tlatin1"
|
1998-02-27 07:54:42 +03:00
|
|
|
else
|
1999-09-20 03:09:07 +04:00
|
|
|
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
|
1998-02-27 07:54:42 +03:00
|
|
|
fi
|
|
|
|
])
|
2000-09-18 05:55:31 +04:00
|
|
|
if test "x$ac_cv_nroff_tascii" = x; then
|
2001-09-13 00:45:46 +04:00
|
|
|
AC_MSG_RESULT([no])
|
2000-09-18 05:55:31 +04:00
|
|
|
else
|
|
|
|
AC_MSG_RESULT([yes,$ac_cv_nroff_tascii])
|
|
|
|
fi
|
1998-02-27 07:54:42 +03:00
|
|
|
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
|
2001-01-11 21:57:44 +03:00
|
|
|
AC_MSG_CHECKING([for - option to file command])
|
2001-05-27 01:30:08 +04:00
|
|
|
AC_CACHE_VAL(ac_cv_filestdin, [[
|
|
|
|
cat > conftest.c <<\EOF
|
1998-02-27 07:54:42 +03:00
|
|
|
/* A comment */
|
|
|
|
#if 0
|
|
|
|
#endif
|
|
|
|
void main(void)
|
|
|
|
{ return; }
|
|
|
|
EOF
|
2001-05-27 01:30:08 +04:00
|
|
|
cat > conftest.sed <<\EOF
|
|
|
|
s/^[^:]*:[ ]*//
|
|
|
|
s/[ ]*$//
|
1998-02-27 07:54:42 +03:00
|
|
|
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`
|
2001-05-27 01:30:08 +04:00
|
|
|
if test "x$filehyphen_1" = "x$filehyphen_2"; then
|
1998-02-27 07:54:42 +03:00
|
|
|
ac_cv_filestdin=yes
|
|
|
|
else
|
|
|
|
ac_cv_filestdin=no
|
|
|
|
fi
|
|
|
|
rm conftest.c conftest.sed
|
2001-05-27 01:30:08 +04:00
|
|
|
]])
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
if test x$ac_cv_filestdin = xyes; then
|
2001-05-29 07:00:02 +04:00
|
|
|
AC_DEFINE(FILE_STDIN, 1,
|
|
|
|
[Define if the file command accepts - for stdin])
|
1998-02-27 07:54:42 +03:00
|
|
|
fi
|
|
|
|
filestdin=$ac_cv_filestdin
|
2001-01-11 21:57:44 +03:00
|
|
|
AC_MSG_RESULT([$filestdin])
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
dnl
|
|
|
|
dnl Check for -L option to file
|
|
|
|
dnl
|
|
|
|
|
2001-01-11 21:57:44 +03:00
|
|
|
AC_MSG_CHECKING([for -L option to file command])
|
1998-02-27 07:54:42 +03:00
|
|
|
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
|
2001-05-29 07:00:02 +04:00
|
|
|
AC_DEFINE(FILE_L, 1, [Define if the file command accepts the -L option])
|
1998-02-27 07:54:42 +03:00
|
|
|
fi
|
|
|
|
filel=$ac_cv_filel
|
2001-01-11 21:57:44 +03:00
|
|
|
AC_MSG_RESULT([$filel])
|
1998-02-27 07:54:42 +03:00
|
|
|
fi
|
|
|
|
|
2001-01-11 21:57:44 +03:00
|
|
|
AC_MSG_CHECKING([for subshell support])
|
1998-02-27 07:54:42 +03:00
|
|
|
AC_ARG_WITH(subshell,
|
|
|
|
[--with-subshell If you want to use a concurrent shell],
|
2001-01-11 21:57:44 +03:00
|
|
|
[result=no
|
1998-02-27 07:54:42 +03:00
|
|
|
if test x$withval = xoptional
|
|
|
|
then
|
2001-09-11 04:27:03 +04:00
|
|
|
AC_DEFINE(SUBSHELL_OPTIONAL, 1,
|
|
|
|
[Define to make subshell support optional])
|
|
|
|
AC_DEFINE(HAVE_SUBSHELL_SUPPORT, 1,
|
|
|
|
[Define to enable subshell support])
|
1998-02-27 07:54:42 +03:00
|
|
|
result="optional"
|
|
|
|
fi
|
|
|
|
if test x$withval = xyes
|
|
|
|
then
|
|
|
|
AC_DEFINE(HAVE_SUBSHELL_SUPPORT)
|
|
|
|
result="yes"
|
2001-01-11 21:57:44 +03:00
|
|
|
fi],
|
|
|
|
[dnl Default: provide the subshell support on non-ultrix machines
|
2001-01-13 09:55:24 +03:00
|
|
|
case $host_os in
|
|
|
|
ultrix*)
|
1998-02-27 07:54:42 +03:00
|
|
|
result=no
|
2001-01-13 09:55:24 +03:00
|
|
|
;;
|
|
|
|
*)
|
1998-02-27 07:54:42 +03:00
|
|
|
AC_DEFINE(HAVE_SUBSHELL_SUPPORT)
|
|
|
|
result=yes
|
2001-01-13 09:55:24 +03:00
|
|
|
;;
|
|
|
|
esac
|
2001-01-11 21:57:44 +03:00
|
|
|
])
|
|
|
|
AC_MSG_RESULT([$result])
|
1998-02-27 07:54:42 +03:00
|
|
|
subshell="$result"
|
|
|
|
|
|
|
|
dnl
|
2000-09-16 03:57:10 +04:00
|
|
|
dnl Memory Allocation Debugger
|
1998-02-27 07:54:42 +03:00
|
|
|
dnl
|
|
|
|
mem_debug="none"
|
2000-09-16 03:57:10 +04:00
|
|
|
AC_ARG_WITH(mad,
|
|
|
|
[--with-mad Developers only: activates MAD (memory debugger)],
|
1998-02-27 07:54:42 +03:00
|
|
|
[if test x$withval = xyes; then
|
|
|
|
mem_debug="Janne's MAD library"
|
2001-09-11 04:27:03 +04:00
|
|
|
AC_DEFINE(HAVE_MAD, 1,
|
|
|
|
[Define to use Memory Allocation Debugger (MAD)])
|
2001-09-13 00:45:46 +04:00
|
|
|
AC_MSG_NOTICE([compiling with memory leak detector])
|
1998-02-27 07:54:42 +03:00
|
|
|
fi])
|
|
|
|
|
|
|
|
dnl
|
2000-09-16 03:57:10 +04:00
|
|
|
dnl Electric Fence - another memory debugger
|
1998-02-27 07:54:42 +03:00
|
|
|
dnl
|
|
|
|
AC_ARG_WITH(efence,
|
2000-09-16 03:57:10 +04:00
|
|
|
[--with-efence Developers only: activates Electric Fence],
|
1998-02-27 07:54:42 +03:00
|
|
|
[if test x$withval = xyes; then
|
|
|
|
LIBS="$LIBS -lefence"
|
2001-09-13 00:45:46 +04:00
|
|
|
AC_MSG_NOTICE([compiling with Electric fence])
|
1998-02-27 07:54:42 +03:00
|
|
|
mem_debug="Electric Fence"
|
|
|
|
fi])
|
|
|
|
|
|
|
|
dnl
|
|
|
|
dnl To force mmap support
|
|
|
|
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 To force using the mmap call (AIX)],
|
|
|
|
[if test x$withval = xyes; then
|
|
|
|
AC_DEFINE(HAVE_MMAP)
|
2001-09-13 00:45:46 +04:00
|
|
|
AC_MSG_NOTICE([forcing MMAP support])
|
1998-02-27 07:54:42 +03:00
|
|
|
fi])
|
|
|
|
|
|
|
|
slang_check_lib=true
|
|
|
|
slang_term=""
|
|
|
|
slang_use_system_installed_lib=false
|
1998-04-26 05:12:45 +04:00
|
|
|
AC_CHECK_LIB(slang,SLang_init_tty,
|
2001-01-11 21:57:44 +03:00
|
|
|
[AC_CHECK_HEADERS(slang.h)
|
1998-02-27 07:54:42 +03:00
|
|
|
if test x$ac_cv_header_slang_h = xyes
|
|
|
|
then
|
|
|
|
slang_use_system_installed_lib=true
|
|
|
|
slang_check_lib=false
|
|
|
|
else
|
|
|
|
AC_CHECK_HEADERS(slang/slang.h)
|
|
|
|
if test x$ac_cv_header_slang_slang_h = xyes
|
|
|
|
then
|
|
|
|
slang_use_system_installed_lib=true
|
|
|
|
slang_check_lib=false
|
|
|
|
fi
|
|
|
|
fi
|
2001-01-11 21:57:44 +03:00
|
|
|
])
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
AC_ARG_WITH(terminfo,
|
|
|
|
[--with-terminfo SLANG: Force usage of terminfo],[
|
1999-04-13 23:21:03 +04:00
|
|
|
if test x$withval = xyes; then
|
|
|
|
AC_USE_TERMINFO
|
|
|
|
slang_check_lib=false
|
|
|
|
slang_use_system_installed_lib=false
|
|
|
|
fi]
|
1998-02-27 07:54:42 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
AC_ARG_WITH(termcap,
|
|
|
|
[--with-termcap SLANG: Force usage of termcap],[
|
1999-04-13 23:21:03 +04:00
|
|
|
if test x$withval = xyes; then
|
|
|
|
AC_USE_TERMCAP
|
|
|
|
slang_check_lib=false
|
|
|
|
slang_use_system_installed_lib=false
|
|
|
|
fi]
|
1998-02-27 07:54:42 +03:00
|
|
|
)
|
|
|
|
|
I improved the movement keys of the internal viewer a little bit.
Now in wrap mode the End key and cursor up key behave much better
(e.g. when viewing binary files with lots of wrapped lines).
It's not perfekt but it's better than it used to be.
Tue Apr 28 06:52:24 1998 Norbert Warmuth <k3190@fh-sw.de>
* gnome/gcmd.c (gnome_open_terminal): Changed my_system(1,...) to
my_system(EXECUTE_AS_SHELL,...)
Tue Apr 28 06:06:03 1998 Norbert Warmuth <k3190@fh-sw.de>
* vfs/extfs.c (extfs_open, extfs_close): Changed my_system(1,...)
to my_system(EXECUTE_AS_SHELL,...), this fixes the broken copyin and
copyout in 4.1.32.
Tue Apr 28 06:11:08 1998 Norbert Warmuth <k3190@fh-sw.de>
* view.c (toggle_wrap_mode, toggle_hex_mode): Force recalculation
of bottom_first (we mustn't use an already calculated and cached
value because it is invalid for the new mode and the End key would
not move to the end of the file).
* configure.in: Renamed the option `--with-our-slang' to
`--with-included-slang' (this one looks better because we also
have an `--with-included-gettext').
Make the option `--with-ext2undel' recognice a given path.
* cmd.c (view_file_at_line): In plain view (F13) set the default
magic flag to zero in order to view the file content unprocessed
(esp. don't uncompress files if they are compressed). The
view_simple_cmd got broken when the default magic flag in view.c
was changed from 0 to 1.
* view.c (do_view_init, goto_line): Set wrap mode temporary off
to make goto line number work, i.e. `line number' now always means
line number in file and not line number on screen (in wrap mode
one long line wrapped once is displayed in two lines on the screen).
That's important when the viewer is invoked from the find file
dialog to display even in wrap mode approxiamtly the part of the
file where we found the content we searched for.
(move_forward2): In wrap mode lines were sometimes counted wrong
causing cursor up to move more than one line.
(move_backward2): Fixed the movement in wrap mode.
(change_viewer): Always re-init viewer when we have a filename,
i. e. if the viewer is invoked with simple_view_cmd then we can switch
with the F8 key between unprocessed file content und uncompressed
file content.
(view_init): re-init view also when magic flag was altered
1998-04-28 18:19:48 +04:00
|
|
|
AC_ARG_WITH(included-slang,
|
|
|
|
[--with-included-slang SLANG: use the SLang library included here],[
|
1999-04-13 23:21:03 +04:00
|
|
|
if test x$withval = xyes; then
|
1998-02-27 07:54:42 +03:00
|
|
|
slang_use_system_installed_lib=false
|
|
|
|
slang_check_lib=true
|
1999-04-13 23:21:03 +04:00
|
|
|
fi]
|
1998-02-27 07:54:42 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
AC_ARG_WITH(slang,
|
|
|
|
[--with-slang Compile with the slang screen manager],[
|
|
|
|
if test x$withval = xyes; then
|
|
|
|
AC_WITH_SLANG
|
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
|
|
|
LIBEDIT_A=""
|
|
|
|
MCEDIT=""
|
|
|
|
LEDIT=""
|
|
|
|
EDIT_msg=""
|
|
|
|
AC_ARG_WITH(edit,
|
2001-09-13 00:45:46 +04:00
|
|
|
[--with-edit Enable internal editpr],
|
2001-01-11 21:57:44 +03:00
|
|
|
[if test x$withval = xyes
|
1998-02-27 07:54:42 +03:00
|
|
|
then
|
|
|
|
AC_WITH_EDIT
|
|
|
|
else
|
|
|
|
EDIT_msg="no"
|
2001-01-11 21:57:44 +03:00
|
|
|
fi],
|
|
|
|
[dnl Default: provide the internal editor
|
1998-02-27 07:54:42 +03:00
|
|
|
AC_WITH_EDIT
|
2001-01-11 21:57:44 +03:00
|
|
|
])
|
1998-02-27 07:54:42 +03:00
|
|
|
AC_SUBST(LIBEDIT_A)
|
|
|
|
AC_SUBST(MCEDIT)
|
|
|
|
AC_SUBST(LEDIT)
|
|
|
|
|
|
|
|
AC_ARG_WITH(netrc,
|
|
|
|
[--with-netrc Compile with ftp .netrc support],[
|
1999-04-13 23:21:03 +04:00
|
|
|
if test x$withval = xyes; then
|
2001-05-29 07:00:02 +04:00
|
|
|
AC_DEFINE(USE_NETRC, 1,
|
|
|
|
[Define to use .netrc for FTP connections])
|
2001-09-13 00:45:46 +04:00
|
|
|
AC_MSG_NOTICE([ftpfs will use .netrc])
|
1999-04-13 23:21:03 +04:00
|
|
|
fi
|
1998-02-27 07:54:42 +03:00
|
|
|
])
|
|
|
|
|
|
|
|
undelfs_o=""
|
|
|
|
|
2001-01-11 23:54:50 +03:00
|
|
|
if test $use_vfs = yes; then
|
|
|
|
AC_ARG_WITH(ext2undel,
|
1998-02-27 07:54:42 +03:00
|
|
|
[--with-ext2undel Compile with ext2 undelete code],[
|
I improved the movement keys of the internal viewer a little bit.
Now in wrap mode the End key and cursor up key behave much better
(e.g. when viewing binary files with lots of wrapped lines).
It's not perfekt but it's better than it used to be.
Tue Apr 28 06:52:24 1998 Norbert Warmuth <k3190@fh-sw.de>
* gnome/gcmd.c (gnome_open_terminal): Changed my_system(1,...) to
my_system(EXECUTE_AS_SHELL,...)
Tue Apr 28 06:06:03 1998 Norbert Warmuth <k3190@fh-sw.de>
* vfs/extfs.c (extfs_open, extfs_close): Changed my_system(1,...)
to my_system(EXECUTE_AS_SHELL,...), this fixes the broken copyin and
copyout in 4.1.32.
Tue Apr 28 06:11:08 1998 Norbert Warmuth <k3190@fh-sw.de>
* view.c (toggle_wrap_mode, toggle_hex_mode): Force recalculation
of bottom_first (we mustn't use an already calculated and cached
value because it is invalid for the new mode and the End key would
not move to the end of the file).
* configure.in: Renamed the option `--with-our-slang' to
`--with-included-slang' (this one looks better because we also
have an `--with-included-gettext').
Make the option `--with-ext2undel' recognice a given path.
* cmd.c (view_file_at_line): In plain view (F13) set the default
magic flag to zero in order to view the file content unprocessed
(esp. don't uncompress files if they are compressed). The
view_simple_cmd got broken when the default magic flag in view.c
was changed from 0 to 1.
* view.c (do_view_init, goto_line): Set wrap mode temporary off
to make goto line number work, i.e. `line number' now always means
line number in file and not line number on screen (in wrap mode
one long line wrapped once is displayed in two lines on the screen).
That's important when the viewer is invoked from the find file
dialog to display even in wrap mode approxiamtly the part of the
file where we found the content we searched for.
(move_forward2): In wrap mode lines were sometimes counted wrong
causing cursor up to move more than one line.
(move_backward2): Fixed the movement in wrap mode.
(change_viewer): Always re-init viewer when we have a filename,
i. e. if the viewer is invoked with simple_view_cmd then we can switch
with the F8 key between unprocessed file content und uncompressed
file content.
(view_init): re-init view also when magic flag was altered
1998-04-28 18:19:48 +04:00
|
|
|
if test x$withval != xno;
|
1998-02-27 07:54:42 +03:00
|
|
|
then
|
I improved the movement keys of the internal viewer a little bit.
Now in wrap mode the End key and cursor up key behave much better
(e.g. when viewing binary files with lots of wrapped lines).
It's not perfekt but it's better than it used to be.
Tue Apr 28 06:52:24 1998 Norbert Warmuth <k3190@fh-sw.de>
* gnome/gcmd.c (gnome_open_terminal): Changed my_system(1,...) to
my_system(EXECUTE_AS_SHELL,...)
Tue Apr 28 06:06:03 1998 Norbert Warmuth <k3190@fh-sw.de>
* vfs/extfs.c (extfs_open, extfs_close): Changed my_system(1,...)
to my_system(EXECUTE_AS_SHELL,...), this fixes the broken copyin and
copyout in 4.1.32.
Tue Apr 28 06:11:08 1998 Norbert Warmuth <k3190@fh-sw.de>
* view.c (toggle_wrap_mode, toggle_hex_mode): Force recalculation
of bottom_first (we mustn't use an already calculated and cached
value because it is invalid for the new mode and the End key would
not move to the end of the file).
* configure.in: Renamed the option `--with-our-slang' to
`--with-included-slang' (this one looks better because we also
have an `--with-included-gettext').
Make the option `--with-ext2undel' recognice a given path.
* cmd.c (view_file_at_line): In plain view (F13) set the default
magic flag to zero in order to view the file content unprocessed
(esp. don't uncompress files if they are compressed). The
view_simple_cmd got broken when the default magic flag in view.c
was changed from 0 to 1.
* view.c (do_view_init, goto_line): Set wrap mode temporary off
to make goto line number work, i.e. `line number' now always means
line number in file and not line number on screen (in wrap mode
one long line wrapped once is displayed in two lines on the screen).
That's important when the viewer is invoked from the find file
dialog to display even in wrap mode approxiamtly the part of the
file where we found the content we searched for.
(move_forward2): In wrap mode lines were sometimes counted wrong
causing cursor up to move more than one line.
(move_backward2): Fixed the movement in wrap mode.
(change_viewer): Always re-init viewer when we have a filename,
i. e. if the viewer is invoked with simple_view_cmd then we can switch
with the F8 key between unprocessed file content und uncompressed
file content.
(view_init): re-init view also when magic flag was altered
1998-04-28 18:19:48 +04:00
|
|
|
if test x$withval != xyes
|
|
|
|
then
|
|
|
|
LIBS="$LIBS -L$withval/lib"
|
|
|
|
CPPFLAGS="$CPPFLAGS -I$withval/include"
|
|
|
|
fi
|
1998-02-27 07:54:42 +03:00
|
|
|
AC_EXT2_UNDEL
|
2000-02-23 10:43:14 +03:00
|
|
|
fi],[
|
1998-02-27 07:54:42 +03:00
|
|
|
dnl Default: detect
|
2001-09-13 23:40:40 +04:00
|
|
|
AC_CHECK_LIB(ext2fs, ext2fs_close, [AC_EXT2_UNDEL], , [-lcom_err])
|
2001-01-11 23:54:50 +03:00
|
|
|
])
|
|
|
|
fi
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
AC_SUBST(undelfs_o)
|
|
|
|
|
|
|
|
if $search_ncurses
|
|
|
|
then
|
2001-09-13 00:45:46 +04:00
|
|
|
AC_MSG_NOTICE([checking location of ncurses.h file])
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
AC_NCURSES(/usr/include, ncurses.h, -lncurses,, "ncurses on /usr/include")
|
|
|
|
AC_NCURSES(/usr/include/ncurses, ncurses.h, -lncurses, -I/usr/include/ncurses, "ncurses on /usr/include/ncurses")
|
1998-04-11 06:53:35 +04:00
|
|
|
AC_NCURSES(/usr/local/include, ncurses.h, -L/usr/local/lib -lncurses, -I/usr/local/include, "ncurses on /usr/local")
|
|
|
|
AC_NCURSES(/usr/local/include/ncurses, ncurses.h, -L/usr/local/lib -L/usr/local/lib/ncurses -lncurses, -I/usr/local/include/ncurses, "ncurses on /usr/local/include/ncurses")
|
1998-02-27 07:54:42 +03:00
|
|
|
|
1998-04-11 06:53:35 +04:00
|
|
|
AC_NCURSES(/usr/local/include/ncurses, curses.h, -L/usr/local/lib -lncurses, -I/usr/local/include/ncurses -DRENAMED_NCURSES, "renamed ncurses on /usr/local/.../ncurses")
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
AC_NCURSES(/usr/include/ncurses, curses.h, -lncurses, -I/usr/include/ncurses -DRENAMED_NCURSES, "renamed ncurses on /usr/include/ncurses")
|
|
|
|
fi
|
1999-01-31 23:28:13 +03:00
|
|
|
|
2001-05-30 19:01:12 +04:00
|
|
|
|
2001-09-11 01:16:40 +04:00
|
|
|
dnl Ncurses specific checks
|
|
|
|
dnl
|
2001-05-30 19:01:12 +04:00
|
|
|
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 -n "$ncurses_version"; then
|
2001-09-11 05:29:29 +04:00
|
|
|
save_LIBS="$LIBS"
|
|
|
|
LIBS="$MCLIBS $LIBS"
|
2001-05-30 19:01:12 +04:00
|
|
|
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
|
|
|
|
|
2001-09-15 05:23:49 +04:00
|
|
|
AC_CHECK_FUNCS(resizeterm)
|
2001-09-11 05:29:29 +04:00
|
|
|
LIBS="$save_LIBS"
|
2001-09-11 01:16:40 +04:00
|
|
|
fi
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
if test "x$screen_manager" = "xunknown"; then
|
|
|
|
AC_WITH_SLANG
|
|
|
|
fi
|
|
|
|
|
|
|
|
dnl
|
|
|
|
dnl The variables used for expanding the auto saver.
|
|
|
|
dnl
|
2001-01-13 10:24:13 +03:00
|
|
|
cons_saver=""
|
1998-02-27 07:54:42 +03:00
|
|
|
install_saver="no"
|
|
|
|
PAMLIBS=""
|
2001-01-13 09:55:24 +03:00
|
|
|
case $host_os in
|
|
|
|
linux*)
|
2001-01-13 10:24:13 +03:00
|
|
|
cons_saver="cons.saver"
|
1998-02-27 07:54:42 +03:00
|
|
|
install_saver="yes"
|
|
|
|
|
|
|
|
dnl
|
|
|
|
dnl On Linux, check for PAM authentication available
|
|
|
|
dnl
|
|
|
|
AC_CHECK_LIB(pam, pam_start, [
|
2001-09-11 04:27:03 +04:00
|
|
|
AC_DEFINE(HAVE_PAM, 1,
|
|
|
|
[Define if PAM (Pluggable Authentication Modules) is available])
|
1998-02-27 07:54:42 +03:00
|
|
|
PAMLIBS="-lpam -ldl"
|
|
|
|
],[],[-ldl])
|
2001-01-13 09:55:24 +03:00
|
|
|
;;
|
|
|
|
esac
|
2001-01-13 10:24:13 +03:00
|
|
|
AC_SUBST(cons_saver)
|
1998-02-27 07:54:42 +03:00
|
|
|
AC_SUBST(PAMLIBS)
|
|
|
|
|
2001-05-31 04:53:06 +04:00
|
|
|
dnl
|
|
|
|
dnl User visible support for charset conversion.
|
|
|
|
dnl
|
|
|
|
AC_ARG_ENABLE([charset],
|
|
|
|
[--enable-charset Support for charset selection and conversion])
|
|
|
|
have_charset=
|
|
|
|
if test "x$enable_charset" = xyes; then
|
2001-07-12 19:28:58 +04:00
|
|
|
if test -z "$am_cv_func_iconv"; then
|
2001-05-31 04:53:06 +04:00
|
|
|
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
|
|
|
|
|
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
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
|
|
|
|
case $screen_manager in
|
2001-01-13 09:55:24 +03:00
|
|
|
SLang*)
|
|
|
|
case $host_os in
|
|
|
|
linux*)
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
AC_CHECK_LIB(curses,setupterm,
|
|
|
|
[AC_TRY_COMPILE([
|
1998-02-27 07:54:42 +03:00
|
|
|
#include <curses.h>
|
|
|
|
#include <term.h>],[
|
|
|
|
if (key_end == parm_insert_line)
|
|
|
|
return 1;
|
|
|
|
return 0;
|
2001-01-13 09:55:24 +03:00
|
|
|
],
|
2001-09-12 00:04:33 +04:00
|
|
|
[MCLIBS="$MCLIBS -lcurses"
|
2001-09-11 04:27:03 +04:00
|
|
|
AC_DEFINE(USE_SETUPTERM, 1,
|
|
|
|
[Define to use function `setupterm'
|
|
|
|
from `curses' library in S-Lang])])
|
2001-01-13 09:55:24 +03:00
|
|
|
])
|
|
|
|
esac
|
|
|
|
;;
|
1998-02-27 07:54:42 +03:00
|
|
|
esac
|
|
|
|
|
|
|
|
LIBS="$LIBS $posix_libs"
|
|
|
|
|
|
|
|
AC_SUBST(CFLAGS)
|
|
|
|
AC_SUBST(CPPFLAGS)
|
|
|
|
AC_SUBST(LDFLAGS)
|
|
|
|
AC_SUBST(LIBS)
|
|
|
|
|
2001-01-30 19:55:09 +03:00
|
|
|
if test "x$SAMBAFILES" != x; then
|
2001-02-07 19:41:16 +03:00
|
|
|
AC_CONFIG_SUBDIRS([vfs/samba])
|
2001-09-07 08:25:02 +04:00
|
|
|
fi
|
1999-06-22 23:56:36 +04:00
|
|
|
|
2001-08-26 12:40:11 +04:00
|
|
|
AM_CONDITIONAL(USE_EDIT, [test -n "$LIBEDIT_A"])
|
2001-09-11 00:31:35 +04:00
|
|
|
AM_CONDITIONAL(USE_VFS, [test "x$use_vfs" = xyes])
|
2001-08-26 21:15:02 +04:00
|
|
|
AM_CONDITIONAL(USE_VFS_NET, [test -n "$NETFILES"])
|
|
|
|
AM_CONDITIONAL(USE_UNDEL_FS, [test -n "$undelfs_o"])
|
|
|
|
AM_CONDITIONAL(USE_SAMBA_FS, [test -n "$SAMBAFILES"])
|
|
|
|
AM_CONDITIONAL(MCSERV_INSTALL,
|
|
|
|
[test "x$enable_mcserv_install$mcserv" = xyesmcserv])
|
2001-09-11 01:54:05 +04:00
|
|
|
AM_CONDITIONAL(INCLUDED_SLANG,
|
|
|
|
[test "x$slang_use_system_installed_lib" = xfalse])
|
2001-08-26 21:15:02 +04:00
|
|
|
AM_CONDITIONAL(CHARSET, [test -n "$have_charset"])
|
|
|
|
AM_CONDITIONAL(CONS_SAVER, [test -n "$cons_saver"])
|
2001-03-15 04:18:14 +03:00
|
|
|
|
2001-09-11 04:27:03 +04:00
|
|
|
AH_BOTTOM([#include <extraconf.h>])
|
|
|
|
|
2001-09-13 00:45:46 +04:00
|
|
|
AC_CONFIG_FILES([
|
1998-03-25 08:16:00 +03:00
|
|
|
Makefile
|
1999-02-28 05:52:05 +03:00
|
|
|
mc.spec
|
1998-03-25 08:16:00 +03:00
|
|
|
doc/Makefile
|
1998-07-24 10:39:59 +04:00
|
|
|
vfs/Makefile:vfs/Make-mc.in
|
2000-09-02 01:34:26 +04:00
|
|
|
vfs/extfs/Makefile
|
1998-03-25 08:16:00 +03:00
|
|
|
lib/Makefile
|
|
|
|
src/Makefile
|
|
|
|
slang/Makefile
|
|
|
|
edit/Makefile
|
1999-03-21 05:10:04 +03:00
|
|
|
syntax/Makefile
|
2000-08-24 18:13:00 +04:00
|
|
|
pc/Makefile
|
1998-03-25 08:16:00 +03:00
|
|
|
|
|
|
|
lib/mc.ext
|
1999-09-23 02:04:45 +04:00
|
|
|
lib/mc.sh
|
|
|
|
lib/mc.csh
|
1998-12-04 03:48:50 +03:00
|
|
|
|
1998-03-25 08:16:00 +03:00
|
|
|
mcfn_install
|
2001-03-08 03:30:47 +03:00
|
|
|
|
|
|
|
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
|
1998-03-25 08:16:00 +03:00
|
|
|
|
|
|
|
doc/mc.1 doc/mcedit.1 doc/mcserv.8
|
|
|
|
|
|
|
|
intl/Makefile po/Makefile.in
|
2001-09-13 00:45:46 +04:00
|
|
|
])
|
|
|
|
|
|
|
|
AC_CONFIG_COMMANDS(potfiles,
|
|
|
|
[sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile])
|
|
|
|
|
|
|
|
AC_OUTPUT
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2001-09-12 00:04:33 +04:00
|
|
|
case $screen_manager in
|
|
|
|
SLang*)
|
|
|
|
screen_manager="${screen_manager}${slang_term}" ;;
|
|
|
|
esac
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
echo "
|
|
|
|
Configuration:
|
|
|
|
|
|
|
|
Source code location: ${srcdir}
|
2001-08-25 07:14:20 +04:00
|
|
|
Compiler: ${CC}
|
1998-02-27 07:54:42 +03:00
|
|
|
Compiler flags: ${CFLAGS}
|
|
|
|
File system: ${vfs_type}
|
2001-08-25 07:14:20 +04:00
|
|
|
${vfs_flags}
|
|
|
|
Screen manager: ${screen_manager}
|
1998-02-27 07:54:42 +03:00
|
|
|
Install console saver: ${install_saver}
|
2001-08-25 07:14:20 +04:00
|
|
|
Mouse support: ${mouse_lib}
|
|
|
|
X11 events support: ${textmode_x11_support}
|
1998-02-27 07:54:42 +03:00
|
|
|
Debugger code: ${mem_debug}
|
|
|
|
With subshell support: ${subshell}
|
|
|
|
Internal editor: ${EDIT_msg}
|
2001-08-25 07:14:20 +04:00
|
|
|
Install path: ${prefix}/bin, ${prefix}/lib/mc
|
2000-08-22 06:17:58 +04:00
|
|
|
"
|