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.

patch tlsuv to resolve duplicate symbol errors with lld

+18 -1
+17
vendor/packagefiles/patches/tlsuv-fix-tls-backend.patch
··· 1 + --- a/CMakeLists.txt 2 + +++ b/CMakeLists.txt 3 + @@ -94,7 +94,13 @@ 4 + ) 5 + endif (TLSUV_HTTP) 6 + 7 + -add_subdirectory(src/${TLSUV_TLSLIB}) 8 + +if(TLSUV_TLSLIB STREQUAL "openssl") 9 + + add_subdirectory(src/openssl) 10 + +elseif(TLSUV_TLSLIB STREQUAL "mbedtls") 11 + + add_subdirectory(src/mbedtls) 12 + +elseif(TLSUV_TLSLIB STREQUAL "win32crypto") 13 + + add_subdirectory(src/win32crypto) 14 + +endif() 15 + 16 + if (TARGET libuv::uv) 17 + message(NOTICE "upstream project set libuv target")
+1 -1
vendor/tlsuv.wrap
··· 2 2 url = https://github.com/openziti/tlsuv.git 3 3 revision = v0.40.13 4 4 depth = 1 5 - diff_files = patches/tlsuv-fix-fd-type.patch 5 + diff_files = patches/tlsuv-fix-fd-type.patch, patches/tlsuv-fix-tls-backend.patch 6 6 method = cmake