Fix comparison of boolean values in CMake build.

Follow-up of 70c4097b6f.

Signed-off-by: Timo Gurr <timo.gurr@gmail.com>
This commit is contained in:
Timo Gurr 2019-02-27 18:31:39 +01:00 committed by Roger Light
parent 91a2932e25
commit 70a22f290f

View File

@ -55,13 +55,13 @@ if (WITH_TLS)
find_package(OpenSSL REQUIRED) find_package(OpenSSL REQUIRED)
add_definitions("-DWITH_TLS") add_definitions("-DWITH_TLS")
if (${WITH_TLS_PSK} STREQUAL ON) if (WITH_TLS_PSK)
add_definitions("-DWITH_TLS_PSK") add_definitions("-DWITH_TLS_PSK")
endif (${WITH_TLS_PSK} STREQUAL ON) endif (WITH_TLS_PSK)
if (${WITH_EC} STREQUAL ON) if (WITH_EC)
add_definitions("-DWITH_EC") add_definitions("-DWITH_EC")
endif (${WITH_EC} STREQUAL ON) endif (WITH_EC)
else (WITH_TLS) else (WITH_TLS)
set (OPENSSL_INCLUDE_DIR "") set (OPENSSL_INCLUDE_DIR "")
endif (WITH_TLS) endif (WITH_TLS)