From cafb356e19cda2272f4238b9258bf1e40435c468 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 30 Aug 2022 13:57:19 +0200 Subject: [PATCH] cmake: set feature PSL if present ... make test 1014 pass when libpsl is used. Closes #9391 --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index fd7b01e870..f8cdf1aab8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1434,6 +1434,7 @@ _add_if("HTTPS-proxy" SSL_ENABLED AND (USE_OPENSSL OR USE_GNUTLS OR USE_NSS)) _add_if("unicode" ENABLE_UNICODE) _add_if("threadsafe" HAVE_ATOMIC OR (WIN32 AND HAVE_WIN32_WINNT GREATER_EQUAL 0x600)) +_add_if("PSL" USE_LIBPSL) string(REPLACE ";" " " SUPPORT_FEATURES "${_items}") message(STATUS "Enabled features: ${SUPPORT_FEATURES}") -- 2.47.3