-
-
Notifications
You must be signed in to change notification settings - Fork 13k
libmsquic 2.5.4 #235270
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
libmsquic 2.5.4 #235270
Conversation
5677351
to
6bb4dfd
Compare
@@ -26,7 +26,7 @@ class Libmsquic < Formula | |||
|
|||
def install | |||
args = %w[ | |||
-DQUIC_TLS=openssl3 | |||
-DQUIC_TLS_LIB=quictls |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably should be
-DQUIC_TLS_LIB=quictls | |
-DQUIC_TLS_LIB=openssl |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
openssl
is on the main, but not yet for the version 2.5.
if(QUIC_TLS_LIB STREQUAL "quictls")
add_library(OpenSSL INTERFACE)
include(FetchContent)
FetchContent_Declare(
OpenSSLQuic
SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/submodules
CMAKE_ARGS "-DQUIC_USE_SYSTEM_LIBCRYPTO=${QUIC_USE_SYSTEM_LIBCRYPTO}"
)
FetchContent_MakeAvailable(OpenSSLQuic)
target_link_libraries(OpenSSL
INTERFACE
OpenSSLQuic::OpenSSLQuic
)
endif()
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh, maybe not this, let's try
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CMake Error at src/platform/CMakeLists.txt:59 (message):
TLS Provider not configured
-- Configuring incomplete, errors occurred!
/opt/homebrew/Library/Homebrew/ignorable.rb:30:in 'block in Object#raise
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yea, maybe we should wait? I kinda want to avoid setting quictls
here, since it vendors its own version of quictls
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree that we should wait for openssl, until then we can stick with 2.4.x versions on MsQuic here. My preference is also openssl on the package.
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. To keep this pull request open, add a |
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. To keep this pull request open, add a |
Created by
brew bump
Created with
brew bump-formula-pr
.