1
1

* configure.in: Require Autoconf 2.52. Remove hacks for

Autoconf 2.13.
* Makefile.am: Require Automake 1.5.
Этот коммит содержится в:
Pavel Roskin 2001-09-07 04:25:02 +00:00
родитель 013466a02e
Коммит d5e1314c5d
3 изменённых файлов: 12 добавлений и 16 удалений

Просмотреть файл

@ -1,3 +1,9 @@
2001-09-07 Pavel Roskin <proski@gnu.org>
* configure.in: Require Autoconf 2.52. Remove hacks for
Autoconf 2.13.
* Makefile.am: Require Automake 1.5.
2001-09-06 Pavel Roskin <proski@gnu.org> 2001-09-06 Pavel Roskin <proski@gnu.org>
* syntax/php.syntax: New file - PHP file highlighting. Copied * syntax/php.syntax: New file - PHP file highlighting. Copied

Просмотреть файл

@ -1,5 +1,7 @@
## Process this file with automake to create Makefile.in. ## Process this file with automake to create Makefile.in.
AUTOMAKE_OPTIONS = 1.5
SUBDIRS = intl po vfs slang edit src lib doc syntax pc SUBDIRS = intl po vfs slang edit src lib doc syntax pc
EXTRA_DIST = FAQ INSTALL.FAST MAINTAINERS \ EXTRA_DIST = FAQ INSTALL.FAST MAINTAINERS \

Просмотреть файл

@ -2,7 +2,7 @@ dnl
dnl Configure.in file for the Midnight Commander dnl Configure.in file for the Midnight Commander
dnl dnl
AC_INIT(src/main.c) AC_INIT(src/main.c)
AC_PREREQ(2.13) AC_PREREQ(2.52)
AC_CANONICAL_HOST AC_CANONICAL_HOST
AM_INIT_AUTOMAKE(mc, 4.5.99a) AM_INIT_AUTOMAKE(mc, 4.5.99a)
@ -19,14 +19,12 @@ AC_AIX
AC_MINIX AC_MINIX
AC_ISC_POSIX AC_ISC_POSIX
dnl Accomodate both Autoconf 2.13 and the 2.5x series, AC_PROG_CC_STDC
ifdef([AC_PROG_CC_STDC], [AC_PROG_CC_STDC], [AM_PROG_CC_STDC])
AC_HEADER_MAJOR AC_HEADER_MAJOR
AC_C_CONST AC_C_CONST
dnl AC_SYS_LARGEFILE is missing in Autoconf-2.13 AC_SYS_LARGEFILE
ifelse(AC_ACVERSION, [2.13], [], [AC_SYS_LARGEFILE])
AC_CHECK_TOOL(AR, ar, ar) AC_CHECK_TOOL(AR, ar, ar)
@ -818,19 +816,9 @@ AC_SUBST(LIBS)
MCF=./Make.common MCF=./Make.common
AC_SUBST_FILE(MCF) AC_SUBST_FILE(MCF)
dnl
dnl Output configuration files
dnl
dnl Accomodate both Autoconf 2.13 and the 2.5x series.
ifelse(AC_ACVERSION, [2.13],
[mc_subdirs=
if test "x$SAMBAFILES" != x; then if test "x$SAMBAFILES" != x; then
mc_subdirs=vfs/samba
AC_CONFIG_SUBDIRS([$mc_subdirs])
fi],
[if test "x$SAMBAFILES" != x; then
AC_CONFIG_SUBDIRS([vfs/samba]) AC_CONFIG_SUBDIRS([vfs/samba])
fi]) fi
AM_CONDITIONAL(USE_EDIT, [test -n "$LIBEDIT_A"]) AM_CONDITIONAL(USE_EDIT, [test -n "$LIBEDIT_A"])
AM_CONDITIONAL(USE_VFS, [test -n "$LIBVFS"]) AM_CONDITIONAL(USE_VFS, [test -n "$LIBVFS"])