Skip to content

Commit

Permalink
Disable building quicserver utility when configured with no-apps op…
Browse files Browse the repository at this point in the history
…tion

Signed-off-by: Vitalii Koshura <lestat.de.lionkur@gmail.com>

Reviewed-by: Paul Yang <kaishen.yy@antfin.com>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from #23149)
  • Loading branch information
AenBleidd authored and t8m committed Dec 29, 2023
1 parent 7deb2b4 commit f60559e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ OpenSSL 3.3

### Changes between 3.2 and 3.3 [xx XXX xxxx]

* Disable building QUIC server utility when OpenSSL is configured with
`no-apps`

*Vitalii Koshura*

* The activate and soft_load configuration settings for providers in
openssl.cnf have been updated to require a value of [1|yes|true|on]
(in lower or UPPER case) to enable the setting. Conversely a value
Expand Down
6 changes: 3 additions & 3 deletions util/build.info
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ SCRIPTS{noinst}=wrap.pl
SOURCE[wrap.pl]=wrap.pl.in
DEPEND[wrap.pl]=../configdata.pm

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

0 comments on commit f60559e

Please sign in to comment.