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 <[email protected]>

Reviewed-by: Paul Yang <[email protected]>
Reviewed-by: Tomas Mraz <[email protected]>
(Merged from openssl#23149)

(cherry picked from commit f60559e)
  • Loading branch information
AenBleidd authored and t8m committed Dec 29, 2023
1 parent e0f47f8 commit dca604f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ OpenSSL 3.2

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

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

*Vitalii Koshura*

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

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 dca604f

Please sign in to comment.