diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-10-20 10:28:01 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-10-20 14:51:26 +0200 |
commit | 57501c86d29d6e6feaa4b647b43888250612996c (patch) | |
tree | 01911c3555b32c4a13d3bdedbdcb0c55a689d877 /CMakeLists.txt | |
parent | 18dd7cc9af1f1f87522cb6c1a8cec867b6d57b7d (diff) | |
download | curl-57501c86d29d6e6feaa4b647b43888250612996c.tar.gz |
CMake: call the feature unixsockets without dash
... so that curl-config gets correct and makes test 1014 happy!
Ref: #6074
Closes #6108
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index ec1cfa782..7e41d3c03 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) |