Skip to content
This repository was archived by the owner on Apr 10, 2025. It is now read-only.

Commit dca604f

Browse files
AenBleiddt8m
authored andcommitted
Disable building quicserver utility when configured with no-apps option
Signed-off-by: Vitalii Koshura <[email protected]> Reviewed-by: Paul Yang <[email protected]> Reviewed-by: Tomas Mraz <[email protected]> (Merged from openssl#23149) (cherry picked from commit f60559e)
1 parent e0f47f8 commit dca604f

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

CHANGES.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@ OpenSSL 3.2
2727

2828
### Changes between 3.2.0 and 3.2.1 [xx XXX xxxx]
2929

30-
* none yet
30+
* Disable building QUIC server utility when OpenSSL is configured with
31+
`no-apps`.
32+
33+
*Vitalii Koshura*
3134

3235
### Changes between 3.1 and 3.2.0 [23 Nov 2023]
3336

util/build.info

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ SCRIPTS{noinst}=wrap.pl
66
SOURCE[wrap.pl]=wrap.pl.in
77
DEPEND[wrap.pl]=../configdata.pm
88

9-
IF[{- !$disabled{quic} && !$disabled{stdio} -}]
9+
IF[{- !$disabled{quic} && !$disabled{stdio} && !$disabled{apps} -}]
1010
PROGRAMS{noinst}=quicserver
1111
SOURCE[quicserver]=quicserver.c
12-
INCLUDE[quicserver]=../include ../apps/include
13-
DEPEND[quicserver]=../libcrypto.a ../libssl.a
12+
INCLUDE[quicserver]=../include ../apps/include
13+
DEPEND[quicserver]=../libcrypto.a ../libssl.a
1414
ENDIF

0 commit comments

Comments
 (0)