From bb71a5fdf8e1b39a59a85cdf81c70cf1fa7689d1 Mon Sep 17 00:00:00 2001 From: Fred Nicolson Date: Wed, 10 Jan 2018 17:12:21 +0000 Subject: [PATCH] Disabled SSL by default (CI doesn't support it at the moment) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fd8efe6..490dabe 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ set(FRNETLIB_LINK_LIBRARIES "") set( CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake_modules) #User options -option(USE_SSL "Use SSL" ON) +option(USE_SSL "Use SSL" OFF) set(FRNETLIB_BUILD_SHARED_LIBS false CACHE BOOL "Build shared library.") set(MAX_HTTP_HEADER_SIZE "0xC800" CACHE STRING "The maximum allowed HTTP header size in bytes") set(MAX_HTTP_BODY_SIZE "0xA00000" CACHE STRING "The maximum allowed HTTP body size in bytes")