diff options
author | TheAssassin <TheAssassin@users.noreply.github.com> | 2017-06-05 01:02:56 +0200 |
---|---|---|
committer | Jay Satiro <raysatiro@yahoo.com> | 2017-06-08 18:30:09 -0400 |
commit | 01596dbadf5515da6282b210dcaf2dba724c7e81 (patch) | |
tree | 642f481a4545ee02733628cb86e830bf9b69aa12 /CMakeLists.txt | |
parent | bc164de7b392dd1f1ffd6013458e32caf03f03cc (diff) | |
download | curl-01596dbadf5515da6282b210dcaf2dba724c7e81.tar.gz |
cmake: Fix inconsistency regarding mbed TLS include directory
Previously, one had to set MBEDTLS_INCLUDE_DIR to make CMake find the
headers, but the system complained that mbed TLS wasn't found due to
MBEDTLS_INCLUDE_DIRS (note the trailing s) was not set. This commit
attempts to fix that.
Closes https://github.com/curl/curl/pull/1541
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 99bfc7695..d2e1c2bb6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -380,7 +380,7 @@ if(CMAKE_USE_MBEDTLS) set(SSL_ENABLED ON) set(USE_MBEDTLS ON) list(APPEND CURL_LIBS ${MBEDTLS_LIBRARIES}) - include_directories(${MBEDTLS_INCLUDE_DIR}) + include_directories(${MBEDTLS_INCLUDE_DIRS}) endif() option(USE_NGHTTP2 "Use Nghttp2 library" OFF) @@ -688,9 +688,9 @@ elseif(CURL_CA_PATH_AUTODETECT OR CURL_CA_BUNDLE_AUTODETECT) endif() endif() -if(CURL_CA_PATH_SET AND NOT USE_OPENSSL) +if(CURL_CA_PATH_SET AND NOT USE_OPENSSL AND NOT USE_MBEDTLS) message(FATAL_ERROR - "CA path only supported by OpenSSL, GnuTLS or PolarSSL. " + "CA path only supported by OpenSSL, GnuTLS or mbed TLS. " "Set CURL_CA_PATH=none or enable one of those TLS backends.") endif() |