From: Daniel Stenberg Date: Tue, 20 Oct 2020 08:28:01 +0000 (+0200) Subject: CMake: call the feature unixsockets without dash X-Git-Tag: curl-7_74_0~142 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=57501c86d29d6e6feaa4b647b43888250612996c;p=thirdparty%2Fcurl.git CMake: call the feature unixsockets without dash ... so that curl-config gets correct and makes test 1014 happy! Ref: #6074 Closes #6108 --- diff --git a/CMakeLists.txt b/CMakeLists.txt index ec1cfa7826..7e41d3c037 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1353,7 +1353,7 @@ endmacro() set(_items) _add_if("SSL" SSL_ENABLED) _add_if("IPv6" ENABLE_IPV6) -_add_if("unix-sockets" USE_UNIX_SOCKETS) +_add_if("unixsockets" USE_UNIX_SOCKETS) _add_if("libz" HAVE_LIBZ) _add_if("brotli" HAVE_BROTLI) _add_if("zstd" HAVE_ZSTD)