diff options
author | Neil Horman <nhorman@openssl.org> | 2024-04-11 21:45:34 +0200 |
---|---|---|
committer | Neil Horman <nhorman@openssl.org> | 2024-04-12 14:02:20 +0200 |
commit | 693071c088c0a93d84d3327a2477ab456fd8ca8e (patch) | |
tree | c79b664476e054582211041fcbd3de060554fc76 /demos | |
parent | make addr_len the right sign in sslecho (diff) | |
download | openssl-693071c088c0a93d84d3327a2477ab456fd8ca8e.tar.xz openssl-693071c088c0a93d84d3327a2477ab456fd8ca8e.zip |
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)
Diffstat (limited to 'demos')
-rw-r--r-- | demos/build.info | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/demos/build.info b/demos/build.info index 49484653f4..5822f9bfec 100644 --- a/demos/build.info +++ b/demos/build.info @@ -1,8 +1,10 @@ SUBDIRS=bio cipher digest keyexch mac kdf pkey signature \ encrypt encode sslecho -IF[{- !$disabled{"quic"} -}] - SUBDIRS=http3 +IF[{- !$disabled{"h3demo"} -}] + IF[{- !$disabled{"quic"} -}] + SUBDIRS=http3 + ENDIF ENDIF IF[{- !$disabled{"cms"} -}] |