From 93e3aa2c4a4ad026e0fe5d93e81362ab992d34b5 Mon Sep 17 00:00:00 2001 From: Andy Green Date: Thu, 25 Mar 2021 13:57:26 +0000 Subject: [PATCH] cmake: remove crufty option --- CMakeLists-implied-options.txt | 4 ---- CMakeLists.txt | 5 ----- 2 files changed, 9 deletions(-) diff --git a/CMakeLists-implied-options.txt b/CMakeLists-implied-options.txt index 8c6d56b45..b63883f4a 100644 --- a/CMakeLists-implied-options.txt +++ b/CMakeLists-implied-options.txt @@ -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() - diff --git a/CMakeLists.txt b/CMakeLists.txt index 7966444be..5267f644d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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)