1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-30 00:00:16 +01:00

cmake: remove crufty option

This commit is contained in:
Andy Green 2021-03-25 13:57:26 +00:00
parent ebe44543ee
commit 93e3aa2c4a
2 changed files with 0 additions and 9 deletions

View file

@ -412,7 +412,3 @@ if (WIN32 AND NOT LWS_EXT_PTHREAD_LIBRARIES)
set(LWS_WITH_SYS_SMD 0)
endif()
if (LWS_WITH_RFC6724 AND (NOT LWS_WITH_CLIENT OR NOT LWS_IPV6))
message(FATAL_ERROR "RFC6724 requires CLIENT and LWS_IPV6")
endif()

View file

@ -127,11 +127,6 @@ option(LWS_WITH_HTTP_BASIC_AUTH "Support Basic Auth" ON)
option(LWS_WITH_HTTP_UNCOMMON_HEADERS "Include less common http header support" ON)
option(LWS_WITH_SYS_STATE "lws_system state support" ON)
option(LWS_WITH_SYS_SMD "Lws System Message Distribution" ON)
if (LWS_IPV6)
option(LWS_WITH_RFC6724 "Enable RFC6724 DNS result sorting" ON)
else()
option(LWS_WITH_RFC6724 "Enable RFC6724 DNS result sorting" OFF)
endif()
option(LWS_WITH_SYS_FAULT_INJECTION "Enable fault injection support" OFF)
option(LWS_WITH_SYS_METRICS "Lws Metrics API" OFF)