]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
1349. [security] Mimimum OpenSSL version now 0.9.6e (was 0.9.5a).
authorMark Andrews <marka@isc.org>
Thu, 1 Aug 2002 04:41:44 +0000 (04:41 +0000)
committerMark Andrews <marka@isc.org>
Thu, 1 Aug 2002 04:41:44 +0000 (04:41 +0000)
                        http://www.cert.org/advisories/CA-2002-23.html

CHANGES
configure
configure.in

diff --git a/CHANGES b/CHANGES
index ed0b0b8f04a8047c0fcbfa1c00b5d2fecc2628da..a5b06f61d388e22d50699851f0eb610068e7a952 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,6 @@
+1349.  [security]      Mimimum OpenSSL version now 0.9.6e (was 0.9.5a).
+                       http://www.cert.org/advisories/CA-2002-23.html
+
 1348.  [port]          Win32: Rewrote code to use I/O Completion Ports
                        in socket.c and eliminating a host of socket
                        errors. Performance is enhanced.
index a9b9e491eb8a62cba6a77910a8beed39a70a84ba..265f365348e23b0fc372fdca16c10901c95bbf68 100755 (executable)
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
 #! /bin/sh
-# From configure.in Revision: 1.327 .
+# From configure.in Revision: 1.328 .
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by GNU Autoconf 2.53.
 #
@@ -4373,11 +4373,11 @@ else
 #include <stdio.h>
 #include <openssl/opensslv.h>
 int main() {
-        if (OPENSSL_VERSION_NUMBER >= 0x0090581fL)
+        if (OPENSSL_VERSION_NUMBER >= 0x0090605fL)
                 return (0);
        printf("\n\nFound   OPENSSL_VERSION_NUMBER %#010x\n",
                OPENSSL_VERSION_NUMBER);
-       printf("Require OPENSSL_VERSION_NUMBER 0x0090581f or greater\n\n");
+       printf("Require OPENSSL_VERSION_NUMBER 0x0090605f or greater\n\n");
         return (1);
 }
 
@@ -4402,8 +4402,8 @@ cat conftest.$ac_ext >&5
 ( exit $ac_status )
 echo "$as_me:$LINENO: result: not compatible" >&5
 echo "${ECHO_T}not compatible" >&6
-                { { echo "$as_me:$LINENO: error: you need OpenSSL 0.9.5a or newer" >&5
-echo "$as_me: error: you need OpenSSL 0.9.5a or newer" >&2;}
+                { { echo "$as_me:$LINENO: error: you need OpenSSL 0.9.6e or newer" >&5
+echo "$as_me: error: you need OpenSSL 0.9.6e or newer" >&2;}
    { (exit 1); exit 1; }; }
 fi
 rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
index e3dfd416a975ec93d4f063ba2c1c2dc6eab9df05..857a5de173b63e4797f30c868c61a8abd6d39a2f 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.327 $)
+AC_REVISION($Revision: 1.328 $)
 
 AC_INIT(lib/dns/name.c)
 AC_PREREQ(2.13)
@@ -395,17 +395,17 @@ shared library configuration (e.g., LD_LIBRARY_PATH).)],
 #include <stdio.h>
 #include <openssl/opensslv.h>
 int main() {
-        if (OPENSSL_VERSION_NUMBER >= 0x0090581fL)
+        if (OPENSSL_VERSION_NUMBER >= 0x0090605fL)
                 return (0);
        printf("\n\nFound   OPENSSL_VERSION_NUMBER %#010x\n",
                OPENSSL_VERSION_NUMBER);
-       printf("Require OPENSSL_VERSION_NUMBER 0x0090581f or greater\n\n");
+       printf("Require OPENSSL_VERSION_NUMBER 0x0090605f or greater\n\n");
         return (1);
 }
 ],
                [AC_MSG_RESULT(ok)],
                [AC_MSG_RESULT(not compatible)
-                AC_MSG_ERROR(you need OpenSSL 0.9.5a or newer)],
+                AC_MSG_ERROR(you need OpenSSL 0.9.6e or newer)],
                [AC_MSG_RESULT(assuming target platform has compatible version)])
                CFLAGS="$saved_cflags"
                LIBS="$saved_libs"