Skip to content

Commit

Permalink
Default to using OpenSSL, as BoringSSL compilation issues occur on so…
Browse files Browse the repository at this point in the history
…me platforms and it's unclear how to fix them.

Related link:
https://github.com/Jackarain/proxy/actions/runs/9427622366
  • Loading branch information
Jackarain committed Jun 8, 2024
1 parent 0747ace commit ad525e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ option(ENABLE_REUSEPORT "Build with REUSEPORT support" OFF)
option(ENABLE_SYSTEM_ZLIB "Build with system zlib support" OFF)
option(ENABLE_SYSTEM_OPENSSL "Build with system openssl support" OFF)

option(ENABLE_USE_OPENSSL "Build with openssl support" ON)
option(ENABLE_USE_BORINGSSL "Build with boringssl support" OFF)
option(ENABLE_USE_WOLFSSL "Build with wolfssl support" OFF)
option(ENABLE_USE_OPENSSL "Build with openssl support" OFF)
option(ENABLE_USE_BORINGSSL "Build with boringssl support" ON)

option(ENABLE_MOLD "Build using mold" OFF)
option(ENABLE_LLD "Build using lld" OFF)
Expand Down

0 comments on commit ad525e6

Please sign in to comment.