]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
831. [bug] The configure script tried to determine
authorAndreas Gustafsson <source@isc.org>
Fri, 18 May 2001 23:10:05 +0000 (23:10 +0000)
committerAndreas Gustafsson <source@isc.org>
Fri, 18 May 2001 23:10:05 +0000 (23:10 +0000)
                        endianness before making its final decision on
                        which C compiler to use, causing Solaris/x86
                        systems with gcc to be incorrectly identified
                        as big-endian. [RT #1315]
(already fixed on the mainline as part of a larger configure.in reorganization)

CHANGES
configure.in

diff --git a/CHANGES b/CHANGES
index 5682c48cf9f8bcbf829da7724106fe27c815ed27..2ec87b3be2ba3660a549fb4a31c5da7dd5322d71 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,10 @@
+
+ 831.  [bug]           The configure script tried to determine
+                       endianness before making its final decision on
+                       which C compiler to use, causing Solaris/x86
+                       systems with gcc to be incorrectly identified
+                       as big-endian. [RT #1315]
+
  827.  [bug]           When an IXFR protocol error occurs, the slave
                        should retry with AXFR.
 
index ee49812c2b3729145e5a74ba49b6395e2deb3628..087e0d295f7ed2982cdfbd55785a0b554ed56a49 100644 (file)
@@ -18,7 +18,7 @@ AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)dnl
 esyscmd([sed "s/^/# /" COPYRIGHT])dnl
 AC_DIVERT_POP()dnl
 
-AC_REVISION($Revision: 1.205.2.6 $)
+AC_REVISION($Revision: 1.205.2.7 $)
 
 AC_INIT(lib/dns/name.c)
 AC_PREREQ(2.13)
@@ -172,11 +172,6 @@ if test "X$CC" = "X" ; then
        esac
 fi
 
-#
-# Find the machine's endian flavor.
-#
-AC_C_BIGENDIAN
-
 #
 # was --with-openssl specified?
 #
@@ -299,6 +294,11 @@ esac
 AC_PROG_CC
 AC_PROG_YACC
 
+#
+# Find the machine's endian flavor.
+#
+AC_C_BIGENDIAN
+
 AC_HEADER_STDC
 
 AC_CHECK_HEADERS(fcntl.h sys/time.h unistd.h sys/sockio.h)