summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2008-05-07 21:16:06 +0000
committerDaniel Stenberg <daniel@haxx.se>2008-05-07 21:16:06 +0000
commit3994a0be7f4e044cbbe3bcbe519acd391a850a9b (patch)
tree9b2b6c1a505c2c5a61627ac629265bafad7b7a5d
parentfc4704b4d8b04502a85c513a8d785ef4e6a61717 (diff)
downloadc-ares-3994a0be7f4e044cbbe3bcbe519acd391a850a9b.tar.gz
c-ares-3994a0be7f4e044cbbe3bcbe519acd391a850a9b.tar.bz2
c-ares-3994a0be7f4e044cbbe3bcbe519acd391a850a9b.zip
- Doug Goldstein provided a configure patch: updates autoconf 2.13 usage to
autoconf 2.57 usage (which is the version you have specified as the minimum version). It's a minor change but it does clean up some warnings with newer autoconf (specifically 2.62).
-rw-r--r--CHANGES7
-rw-r--r--configure.ac13
2 files changed, 14 insertions, 6 deletions
diff --git a/CHANGES b/CHANGES
index d721dd5..88d95cc 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,12 @@
Changelog for the c-ares project
+* May 7 2008 (Daniel Stenberg)
+
+- Doug Goldstein provided a configure patch: updates autoconf 2.13 usage to
+ autoconf 2.57 usage (which is the version you have specified as the minimum
+ version). It's a minor change but it does clean up some warnings with newer
+ autoconf (specifically 2.62).
+
* May 5 2008 (Yang Tse)
- Improved parsing of resolver configuration files.
diff --git a/configure.ac b/configure.ac
index 0f1a16a..f3b80cf 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,11 +1,9 @@
-
-dnl Process this file with autoconf to produce a configure script.
+AC_INIT([c-ares],[1.5.1],[daniel@haxx.se])
AC_PREREQ(2.57)
-AC_INIT(ares_init.c)
AC_CONFIG_SRCDIR([ares_ipv6.h])
-AM_CONFIG_HEADER(config.h)
+AM_CONFIG_HEADER([config.h])
AM_MAINTAINER_MODE
-AM_INIT_AUTOMAKE(c-ares, CVS)
+AM_INIT_AUTOMAKE
dnl
dnl Detect the canonical host and target build environment
@@ -17,6 +15,8 @@ AC_DEFINE_UNQUOTED(OS, "${host}", [cpu-machine-OS])
AC_AIX
AC_PROG_CC
+AC_PROG_CC_STDC
+AM_PROG_CC_C_O
AC_PROG_INSTALL
case $host_os in
@@ -851,4 +851,5 @@ if test -n "$RANDOM_FILE" && test X"$RANDOM_FILE" != Xno ; then
[a suitable file/device to read random data from])
fi
-AC_OUTPUT(Makefile libcares.pc)
+AC_CONFIG_FILES([Makefile libcares.pc])
+AC_OUTPUT