summaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
authorNeil Horman <nhorman@openssl.org>2024-04-11 15:45:34 -0400
committerNeil Horman <nhorman@openssl.org>2024-04-12 08:02:20 -0400
commit693071c088c0a93d84d3327a2477ab456fd8ca8e (patch)
treec79b664476e054582211041fcbd3de060554fc76 /demos
parent6195c08d10484a79128cfba6cdbe9121f4247398 (diff)
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.info6
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"} -}]