From 0550ec2bd40e649a6b4b63b62db9956589cade7d Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Fri, 24 May 2024 20:51:23 +0200 Subject: [PATCH] cmake: fix test 1013 with websockets enabled and no TLS test 1013 is 'Compare curl --version with curl-config --protocols'. Ref: https://github.com/curl/curl/actions/runs/9228363859/job/25392251955 Closes #13769 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 65b805c33c..617c7516a0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1685,7 +1685,7 @@ if(NOT CURL_DISABLE_INSTALL) _add_if("RTMP" USE_LIBRTMP) _add_if("MQTT" NOT CURL_DISABLE_MQTT) _add_if("WS" USE_WEBSOCKETS) - _add_if("WSS" USE_WEBSOCKETS) + _add_if("WSS" USE_WEBSOCKETS AND SSL_ENABLED) if(_items) list(SORT _items) endif()