Skip to content

Commit

Permalink
Disable TLS by default, as it's currently broken
Browse files Browse the repository at this point in the history
mbedTLS changed their API, breaking the TLS support. Disable it for
now.
  • Loading branch information
lpereira committed Jul 6, 2024
1 parent bcffd5c commit dce8c22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ if (ZSTD_FOUND)
set(LWAN_HAVE_ZSTD 1)
endif ()

option(ENABLE_TLS "Enable support for TLS (Linux-only)" "ON")
option(ENABLE_TLS "Enable support for TLS (Linux-only)" "OFF")
if (ENABLE_TLS)
check_include_file(linux/tls.h LWAN_HAVE_LINUX_TLS_H)
if (LWAN_HAVE_LINUX_TLS_H)
Expand Down

0 comments on commit dce8c22

Please sign in to comment.