2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-22 18:19:42 +00:00

2550. [bug] Check --with-openssl=<path> finds <openssl/opensslv.h>.

[RT #19343]
This commit is contained in:
Mark Andrews 2009-02-15 22:54:29 +00:00
parent bbdbde5fa0
commit 0807f596b5
3 changed files with 467 additions and 470 deletions

View File

@ -1,3 +1,6 @@
2550. [bug] Check --with-openssl=<path> finds <openssl/opensslv.h>.
[RT #19343]
2549. [port] linux: define NR_OPEN if not currently defined.
[RT #19344]

929
configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -18,7 +18,7 @@ AC_DIVERT_PUSH(1)dnl
esyscmd([sed "s/^/# /" COPYRIGHT])dnl
AC_DIVERT_POP()dnl
AC_REVISION($Revision: 1.467 $)
AC_REVISION($Revision: 1.468 $)
AC_INIT(lib/dns/name.c)
AC_PREREQ(2.59)
@ -511,6 +511,9 @@ case "$use_openssl" in
AC_MSG_ERROR(
[OpenSSL was not found in any of $openssldirs; use --with-openssl=/path])
fi
elif ! test -f "$use_openssl"/include/openssl/opensslv.h
then
AC_MSG_ERROR(["$use_openssl/include/openssl/opensslv.h" not found])
fi
USE_OPENSSL='-DOPENSSL'
if test "$use_openssl" = "/usr"