From a44e61ac793a7ab443681cfee01797a3b83d75ee Mon Sep 17 00:00:00 2001 From: Marius Vollmer Date: Wed, 17 Apr 2002 17:37:29 +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 | 51 ++++++++++++++++++++++++++------------------------- 1 file changed, 26 insertions(+), 25 deletions(-) diff --git a/configure.in b/configure.in index 1a632ac5d..c25778ee6 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]) @@ -143,6 +143,31 @@ AC_ARG_ENABLE(elisp, [ --disable-elisp omit Emacs Lisp support],, enable_elisp=yes) +#-------------------------------------------------------------------- + +dnl Some more checks for Win32 +AC_CYGWIN +AC_MINGW32 +AC_LIBTOOL_WIN32_DLL + +AC_LIBLTDL_INSTALLABLE +AC_CONFIG_SUBDIRS(libltdl) + +AC_PROG_INSTALL +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 @@ -175,30 +200,6 @@ if test "$enable_elisp" = yes; then [Define this if you want Elisp support (in addition to Scheme).]) fi -#-------------------------------------------------------------------- - -dnl Some more checks for Win32 -AC_CYGWIN -AC_MINGW32 -AC_LIBTOOL_WIN32_DLL - -AC_LIBLTDL_INSTALLABLE -AC_CONFIG_SUBDIRS(libltdl) - -AC_PROG_INSTALL -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