]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
2745. [bug] configure script didn't probe the return type of
authorTatuya JINMEI 神明達哉 <jinmei@isc.org>
Tue, 3 Nov 2009 23:17:31 +0000 (23:17 +0000)
committerTatuya JINMEI 神明達哉 <jinmei@isc.org>
Tue, 3 Nov 2009 23:17:31 +0000 (23:17 +0000)
gai_strerror(3) correctly. [RT #20573]

CHANGES
configure.in

diff --git a/CHANGES b/CHANGES
index 9b218c20ddd495c1d3573302eb6d7ac59660e08b..c47ffe276fd27683ecff0d08142c5cae32799944 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,6 @@
+2745.  [bug]           configure script didn't probe the return type of
+                       gai_strerror(3) correctly. [RT #20573]
+
 2744.  [func]          Log if a query was over TCP. [RT #19961]
 
 2743.  [bug]           RRSIG could be incorrectly set in the NSEC3 record
index e815f03bb0225b59bcbee20762e6070baf0d198d..c8b476c9e9bc0b415d13cffeb21ac66161b407c3 100644 (file)
@@ -18,7 +18,7 @@ AC_DIVERT_PUSH(1)dnl
 esyscmd([sed "s/^/# /" COPYRIGHT])dnl
 AC_DIVERT_POP()dnl
 
-AC_REVISION($Revision: 1.487 $)
+AC_REVISION($Revision: 1.488 $)
 
 AC_INIT(lib/dns/name.c)
 AC_PREREQ(2.59)
@@ -1973,9 +1973,9 @@ char *gai_strerror(int ecode);],
 [ return (0); ],
        [AC_MSG_RESULT(returning char *)
         AC_DEFINE([IRS_GAISTRERROR_RETURN_T], [char *],
-        [return type of gai_srerror])],
-[AC_MSG_RESULT(not match any subspecies; assume standard definition)])
-AC_DEFINE([IRS_GAISTRERROR_RETURN_T], [const char *])
+        [return type of gai_strerror])],
+[AC_MSG_RESULT(not match any subspecies; assume standard definition)
+AC_DEFINE([IRS_GAISTRERROR_RETURN_T], [const char *])])
 
 AC_CHECK_FUNC(getipnodebyname,
        [ISC_LWRES_GETIPNODEPROTO="#undef ISC_LWRES_GETIPNODEPROTO"],