diff options
author | Daniel Stenberg <daniel@haxx.se> | 2018-06-08 16:36:47 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-06-11 10:20:18 +0200 |
commit | 38203f1585da53e07e54e37c7d5da4d72f509a2e (patch) | |
tree | ce206e4bb0b26c4155a864be32f82397a1d2eab5 /CMakeLists.txt | |
parent | 100318c7fd934fa260f790d03808860c9b6cec68 (diff) | |
download | curl-38203f1585da53e07e54e37c7d5da4d72f509a2e.tar.gz |
openssl: assume engine support in 1.0.1 or later
Previously it was checked for in configure/cmake, but that would then
leave other build systems built without engine support.
While engine support probably existed prior to 1.0.1, I decided to play
safe. If someone experience a problem with this, we can widen the
version check.
Fixes #2641
Closes #2644
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index e8cdcc555..7d7d76cd8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -356,7 +356,6 @@ if(CMAKE_USE_OPENSSL) include_directories(${OPENSSL_INCLUDE_DIR}) set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR}) check_include_file("openssl/crypto.h" HAVE_OPENSSL_CRYPTO_H) - check_include_file("openssl/engine.h" HAVE_OPENSSL_ENGINE_H) check_include_file("openssl/err.h" HAVE_OPENSSL_ERR_H) check_include_file("openssl/pem.h" HAVE_OPENSSL_PEM_H) check_include_file("openssl/rsa.h" HAVE_OPENSSL_RSA_H) |