1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-28 16:00:22 +02:00

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.
This commit is contained in:
Marius Vollmer 2002-04-14 20:01:19 +00:00
parent 4f2be4d782
commit 4b8f7eed3c

View file

@ -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