From 4b8f7eed3c11c46534ac3405f5b174d37f1c44dc Mon Sep 17 00:00:00 2001 From: Marius Vollmer Date: Sun, 14 Apr 2002 20:01:19 +0000 Subject: [PATCH] Bump required autoconf version to 2.53. Move uses of AC_LIBOBJ after AC_PROG_CC. AC_LIBOBJ needs OBJEXT which is set by AC_PROG_CC. --- configure.in | 40 +++++++++++++++++++++------------------- 1 file changed, 21 insertions(+), 19 deletions(-) diff --git a/configure.in b/configure.in index d80fa9661..09033fc7a 100644 --- a/configure.in +++ b/configure.in @@ -20,7 +20,7 @@ dnl along with GUILE; see the file COPYING. If not, write to the dnl Free Software Foundation, Inc., 59 Temple Place - Suite 330, dnl Boston, MA 02111-1307, USA. -AC_PREREQ(2.50) +AC_PREREQ(2.53) AC_INIT AC_CONFIG_SRCDIR([Makefile.in]) @@ -140,6 +140,26 @@ AC_DEFINE(DEBUG_EXTENSIONS, 1, AC_DEFINE(READER_EXTENSIONS, 1, [Define if you want support for debugging Scheme programs.]) + +#-------------------------------------------------------------------- + +AC_LIBLTDL_INSTALLABLE +AC_CONFIG_SUBDIRS(libltdl) + +AC_PROG_CC +AC_PROG_CPP +AC_LIBTOOL_DLOPEN + +AC_AIX +AC_ISC_POSIX +AC_MINIX + +AM_PROG_CC_STDC +AM_PROG_LIBTOOL + +AC_CHECK_PROG(have_makeinfo, makeinfo, yes, no) +AM_CONDITIONAL(HAVE_MAKEINFO, test "$have_makeinfo" = yes) + dnl files which are destined for separate modules. if test "$enable_arrays" = yes; then @@ -167,24 +187,6 @@ if test "$enable_debug_malloc" = yes; then AC_LIBOBJ([debug-malloc]) fi -#-------------------------------------------------------------------- - -AC_LIBLTDL_INSTALLABLE -AC_CONFIG_SUBDIRS(libltdl) - -AC_PROG_CC -AC_PROG_CPP -AC_LIBTOOL_DLOPEN - -AC_AIX -AC_ISC_POSIX -AC_MINIX - -AM_PROG_CC_STDC -AM_PROG_LIBTOOL - -AC_CHECK_PROG(have_makeinfo, makeinfo, yes, no) -AM_CONDITIONAL(HAVE_MAKEINFO, test "$have_makeinfo" = yes) AC_C_CONST AC_C_INLINE