MIRROR: javascript for ๐Ÿœ's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

update tlsuv patch

+12 -1
+12 -1
vendor/packagefiles/patches/tlsuv-fix-tls-backend.patch
··· 1 1 --- a/CMakeLists.txt 2 2 +++ b/CMakeLists.txt 3 - @@ -94,7 +94,13 @@ 3 + @@ -36,7 +36,9 @@ 4 + endif () 5 + 6 + set(supported_tls_libs openssl mbedtls win32crypto) 7 + -set(TLSUV_TLSLIB ${default_crypto} CACHE STRING "TLS implementation library ${supported_tls_libs}") 8 + +if(NOT DEFINED TLSUV_TLSLIB) 9 + + set(TLSUV_TLSLIB ${default_crypto}) 10 + +endif() 11 + 12 + if(NOT TLSUV_TLSLIB IN_LIST supported_tls_libs) 13 + message(FATAL_ERROR "`${TLSUV_TLSLIB}' TLS library is not supported") 14 + @@ -94,7 +96,13 @@ 4 15 ) 5 16 endif (TLSUV_HTTP) 6 17