mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-23 18:04:10 -05:00
2357. [port] Don't use OpenSSL's engine support in versions before
OpenSSL 0.9.7f. [RT #17922]
This commit is contained in:
parent
9c89fcb69c
commit
0f4a4d46ab
2 changed files with 5 additions and 2 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
2357. [port] Don't use OpenSSL's engine support in versions before
|
||||
OpenSSL 0.9.7f. [RT #17922]
|
||||
|
||||
2356. [bug] Builtin mutex profiler was not scalable enough.
|
||||
[RT #17436]
|
||||
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@
|
|||
|
||||
/*
|
||||
* Principal Author: Brian Wellington
|
||||
* $Id: openssl_link.c,v 1.19 2008/04/02 23:46:57 tbox Exp $
|
||||
* $Id: openssl_link.c,v 1.20 2008/04/04 22:10:49 marka Exp $
|
||||
*/
|
||||
#ifdef OPENSSL
|
||||
|
||||
|
|
@ -54,7 +54,7 @@
|
|||
#include <openssl/conf.h>
|
||||
#include <openssl/crypto.h>
|
||||
|
||||
#if defined(CRYPTO_LOCK_ENGINE) && (OPENSSL_VERSION_NUMBER != 0x00907000L)
|
||||
#if defined(CRYPTO_LOCK_ENGINE) && (OPENSSL_VERSION_NUMBER >= 0x0090707f)
|
||||
#define USE_ENGINE 1
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue