disable http3 demo on windows
The external nghttp3 library seems to have a linking issue on windows (several missing symbols). Disable that build in windows for now until its fixed Reviewed-by: Nicola Tuveri <nic.tuv@gmail.com> Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Paul Dale <ppzgs1@gmail.com> Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com> (Merged from https://github.com/openssl/openssl/pull/24047)
This commit is contained in:
parent
6195c08d10
commit
693071c088
3 changed files with 22 additions and 16 deletions
|
@ -79,6 +79,8 @@ EOF
|
|||
# support isn't compiled.
|
||||
#
|
||||
# enable-demos Enable the building of the example code in the demos directory
|
||||
# enable-h3demo Enable the http3 demo, which currently only links to the
|
||||
# external nghttp3 library on unix platforms
|
||||
# no-hw do not compile support for any crypto hardware.
|
||||
# [no-]threads [don't] try to create a library that is suitable for
|
||||
# multithreaded applications (default is "threads" if we
|
||||
|
@ -446,6 +448,7 @@ my @disablables = (
|
|||
"ct",
|
||||
"default-thread-pool",
|
||||
"demos",
|
||||
"h3demo",
|
||||
"deprecated",
|
||||
"des",
|
||||
"devcryptoeng",
|
||||
|
@ -574,6 +577,7 @@ our %disabled = ( # "what" => "comment"
|
|||
"crypto-mdebug" => "default",
|
||||
"crypto-mdebug-backtrace" => "default",
|
||||
"demos" => "default",
|
||||
"h3demo" => "default",
|
||||
"devcryptoeng" => "default",
|
||||
"ec_nistp_64_gcc_128" => "default",
|
||||
"egd" => "default",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue