mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 12:32:40 +03:00
* configure.in: Require Autoconf 2.52. Remove hacks for
Autoconf 2.13. * Makefile.am: Require Automake 1.5.
This commit is contained in:
parent
013466a02e
commit
d5e1314c5d
@ -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>
|
||||
|
||||
* syntax/php.syntax: New file - PHP file highlighting. Copied
|
||||
|
@ -1,5 +1,7 @@
|
||||
## Process this file with automake to create Makefile.in.
|
||||
|
||||
AUTOMAKE_OPTIONS = 1.5
|
||||
|
||||
SUBDIRS = intl po vfs slang edit src lib doc syntax pc
|
||||
|
||||
EXTRA_DIST = FAQ INSTALL.FAST MAINTAINERS \
|
||||
|
20
configure.in
20
configure.in
@ -2,7 +2,7 @@ dnl
|
||||
dnl Configure.in file for the Midnight Commander
|
||||
dnl
|
||||
AC_INIT(src/main.c)
|
||||
AC_PREREQ(2.13)
|
||||
AC_PREREQ(2.52)
|
||||
AC_CANONICAL_HOST
|
||||
|
||||
AM_INIT_AUTOMAKE(mc, 4.5.99a)
|
||||
@ -19,14 +19,12 @@ AC_AIX
|
||||
AC_MINIX
|
||||
AC_ISC_POSIX
|
||||
|
||||
dnl Accomodate both Autoconf 2.13 and the 2.5x series,
|
||||
ifdef([AC_PROG_CC_STDC], [AC_PROG_CC_STDC], [AM_PROG_CC_STDC])
|
||||
AC_PROG_CC_STDC
|
||||
|
||||
AC_HEADER_MAJOR
|
||||
AC_C_CONST
|
||||
|
||||
dnl AC_SYS_LARGEFILE is missing in Autoconf-2.13
|
||||
ifelse(AC_ACVERSION, [2.13], [], [AC_SYS_LARGEFILE])
|
||||
AC_SYS_LARGEFILE
|
||||
|
||||
AC_CHECK_TOOL(AR, ar, ar)
|
||||
|
||||
@ -818,19 +816,9 @@ AC_SUBST(LIBS)
|
||||
MCF=./Make.common
|
||||
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
|
||||
mc_subdirs=vfs/samba
|
||||
AC_CONFIG_SUBDIRS([$mc_subdirs])
|
||||
fi],
|
||||
[if test "x$SAMBAFILES" != x; then
|
||||
AC_CONFIG_SUBDIRS([vfs/samba])
|
||||
fi])
|
||||
fi
|
||||
|
||||
AM_CONDITIONAL(USE_EDIT, [test -n "$LIBEDIT_A"])
|
||||
AM_CONDITIONAL(USE_VFS, [test -n "$LIBVFS"])
|
||||
|
Loading…
Reference in New Issue
Block a user