diff --git a/CHANGES.md b/CHANGES.md index 6f7c66dbce539..43f874ff9c592 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -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 diff --git a/util/build.info b/util/build.info index cf06f15ae4f0e..e4aab44b38038 100644 --- a/util/build.info +++ b/util/build.info @@ -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