2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 14:07:59 +00:00

require OpenSSL 0.9.5a, since that's what doc/misc/dnssec

has been saying for some time
This commit is contained in:
Andreas Gustafsson
2001-07-13 00:48:46 +00:00
parent abea3fdc7f
commit cb2a4cad76
2 changed files with 5 additions and 5 deletions

View 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.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 <openssl/opensslv.h>
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"
;;

View File

@@ -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 $