[libxslt] configure: acconfig.h is deprecated since autoconf-2.50
- From: Stefan Kost <stefkost src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libxslt] configure: acconfig.h is deprecated since autoconf-2.50
- Date: Wed, 25 May 2011 14:10:25 +0000 (UTC)
commit fc473846719123dce0342054afd5015b5af62a4d
Author: Stefan Kost <ensonic users sf net>
Date: Wed May 18 09:50:50 2011 +0300
configure: acconfig.h is deprecated since autoconf-2.50
Remove deprecated file (leftover from autoconf-2.13). Change AC_DEFINE into
3-arg versions to provide the comments for config.h. Bump autoconf version to
2.59 (same as libxml).
acconfig.h | 6 ------
configure.in | 14 +++++++-------
2 files changed, 7 insertions(+), 13 deletions(-)
---
diff --git a/configure.in b/configure.in
index 7ee1a19..ba0d37b 100644
--- a/configure.in
+++ b/configure.in
@@ -1,5 +1,5 @@
dnl Process this file with autoconf to produce a configuration script.
-AC_PREREQ(2.2)
+AC_PREREQ(2.59)
AC_INIT(libxslt/xslt.c)
AM_CONFIG_HEADER(config.h)
AC_CANONICAL_HOST
@@ -231,19 +231,19 @@ AC_CHECK_HEADERS(ieeefp.h nan.h math.h fp_class.h float.h ansidecl.h)
AC_CHECK_HEADERS(sys/timeb.h time.h sys/stat.h sys/select.h stdarg.h)
AC_CHECK_FUNCS(stat _stat)
AC_CHECK_FUNC(isnan, , AC_CHECK_LIB(m, isnan,
- [M_LIBS="-lm"; AC_DEFINE(HAVE_ISNAN)]))
+ [M_LIBS="-lm"; AC_DEFINE([HAVE_ISNAN],[], [Define if isnan is there])]))
AC_CHECK_FUNC(isinf, , AC_CHECK_LIB(m, isinf,
- [M_LIBS="-lm"; AC_DEFINE(HAVE_ISINF)]))
+ [M_LIBS="-lm"; AC_DEFINE([HAVE_ISINF],[], [Define if isinf is there])]))
AC_CHECK_FUNC(pow, , AC_CHECK_LIB(m, pow,
- [M_LIBS="-lm"; AC_DEFINE(HAVE_POW)]))
+ [M_LIBS="-lm"; AC_DEFINE([HAVE_POW],[], [Define if pow is there])]))
AC_CHECK_FUNC(floor, , AC_CHECK_LIB(m, floor,
- [M_LIBS="-lm"; AC_DEFINE(HAVE_FLOOR)]))
+ [M_LIBS="-lm"; AC_DEFINE([HAVE_FLOOR],[], [Define if floor is there])]))
AC_CHECK_FUNC(fabs, , AC_CHECK_LIB(m, fabs,
- [M_LIBS="-lm"; AC_DEFINE(HAVE_FABS)]))
+ [M_LIBS="-lm"; AC_DEFINE([HAVE_FABS],[], [Define if fabs is there])]))
AC_CHECK_FUNCS(gettimeofday)
@@ -449,7 +449,7 @@ if test "$with_debugger" = "no" ; then
else
echo Enabling debugger
WITH_DEBUGGER=1
- AC_DEFINE(WITH_DEBUGGER)
+ AC_DEFINE([WITH_DEBUGGER],[], [Define if debugging support is enabled])
fi
AC_SUBST(WITH_DEBUGGER)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]