From cb2a4cad76fbda226e7cd9dd3ca017b52521e3d1 Mon Sep 17 00:00:00 2001 From: Andreas Gustafsson Date: Fri, 13 Jul 2001 00:48:46 +0000 Subject: [PATCH] require OpenSSL 0.9.5a, since that's what doc/misc/dnssec has been saying for some time --- configure.in | 6 +++--- doc/misc/dnssec | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/configure.in b/configure.in index 79a5818128..826439a346 100644 --- a/configure.in +++ b/configure.in @@ -18,7 +18,7 @@ AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)dnl esyscmd([sed "s/^/# /" COPYRIGHT])dnl AC_DIVERT_POP()dnl -AC_REVISION($Revision: 1.274 $) +AC_REVISION($Revision: 1.275 $) AC_INIT(lib/dns/name.c) AC_PREREQ(2.13) @@ -321,14 +321,14 @@ case "$use_openssl" in AC_TRY_RUN([ #include int main() { - if (OPENSSL_VERSION_NUMBER >= 0x0090500fL) + if (OPENSSL_VERSION_NUMBER >= 0x0090581fL) return (0); return (1); } ], [AC_MSG_RESULT(ok)], [AC_MSG_RESULT(not compatible) - AC_MSG_ERROR(you need OpenSSL 0.9.5 or newer)]) + AC_MSG_ERROR(you need OpenSSL 0.9.5a or newer)]) CFLAGS="$saved_cflags" LIBS="$saved_libs" ;; diff --git a/doc/misc/dnssec b/doc/misc/dnssec index 0db5568541..145e298b3b 100644 --- a/doc/misc/dnssec +++ b/doc/misc/dnssec @@ -10,7 +10,7 @@ this release of BIND9. OpenSSL Library Required -To support DNSSEC, BIND 9 must be lined with version 0.9.5 or newer of +To support DNSSEC, BIND 9 must be lined with version 0.9.5a or newer of the OpenSSL library. As of BIND 9.2, the library is no longer included in the distribution - it must be provided by the operating system or installed separately. @@ -81,4 +81,4 @@ an update occurs. Advanced access control is possible using the "update-policy" statement in the zone definition. -$Id: dnssec,v 1.12 2001/07/13 00:43:58 gson Exp $ +$Id: dnssec,v 1.13 2001/07/13 00:48:46 gson Exp $