mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-20 11:40:18 +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:
parent
9ea1cfc656
commit
a44e61ac79
1 changed files with 26 additions and 25 deletions
51
configure.in
51
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue