summaryrefslogtreecommitdiffstats
path: root/util/build.info
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2023-06-08 12:18:38 +0100
committerPauli <pauli@openssl.org>2023-06-28 09:53:22 +1000
commit37f27b91deda5b6537883c06e845f0d2c28c5d5c (patch)
tree9b750371e7748f085e5a12d111191562b43e1d44 /util/build.info
parent956b4c75dc3f8710bf7b4e1cf01b4ef6d5ca2b45 (diff)
Add a test quicserver utility
This QUIC server utility is intended for test purposes only and is expected to be replaced in a future version of OpenSSL by s_server. At that point it will be removed. Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21204)
Diffstat (limited to 'util/build.info')
-rw-r--r--util/build.info11
1 files changed, 9 insertions, 2 deletions
diff --git a/util/build.info b/util/build.info
index c49d3e068d..9ed12a8293 100644
--- a/util/build.info
+++ b/util/build.info
@@ -1,7 +1,14 @@
IF[{- $target{build_scheme}->[1] eq "unix" -}]
- SCRIPTS{noinst}=shlib_wrap.sh
- SOURCE[shlib_wrap.sh]=shlib_wrap.sh.in
+ SCRIPTS{noinst}=shlib_wrap.sh
+ SOURCE[shlib_wrap.sh]=shlib_wrap.sh.in
ENDIF
SCRIPTS{noinst}=wrap.pl
SOURCE[wrap.pl]=wrap.pl.in
DEPEND[wrap.pl]=../configdata.pm
+
+IF[{- !$disabled{quic} -}]
+ PROGRAMS{noinst}=quicserver
+ SOURCE[quicserver]=quicserver.c
+INCLUDE[quicserver]=../include ../apps/include
+DEPEND[quicserver]=../libcrypto.a ../libssl.a
+ENDIF