diff options
author | Neil Horman <nhorman@openssl.org> | 2024-04-06 04:20:54 +0200 |
---|---|---|
committer | Neil Horman <nhorman@openssl.org> | 2024-04-12 14:02:19 +0200 |
commit | 7a7fbeb924a0b94459211ed3122050c07ebd20de (patch) | |
tree | 2b8ed2a74bcef428433241171fa7294cb42c58d5 /build.info | |
parent | Convert demos to primary build system (diff) | |
download | openssl-7a7fbeb924a0b94459211ed3122050c07ebd20de.tar.xz openssl-7a7fbeb924a0b94459211ed3122050c07ebd20de.zip |
fix all the warnings in our demos and make them enableable
Fix up the warnings in the demos and make them configurable with
enable-demos
Reviewed-by: Nicola Tuveri <nic.tuv@gmail.com>
Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Paul Dale <ppzgs1@gmail.com>
Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com>
(Merged from https://github.com/openssl/openssl/pull/24047)
Diffstat (limited to 'build.info')
-rw-r--r-- | build.info | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/build.info b/build.info index ad780336d4..fdab98c103 100644 --- a/build.info +++ b/build.info @@ -1,10 +1,13 @@ # Note that some of these directories are filtered in Configure. Look for # %skipdir there for further explanations. -SUBDIRS=crypto ssl apps util tools fuzz providers doc demos +SUBDIRS=crypto ssl apps util tools fuzz providers doc IF[{- !$disabled{tests} -}] SUBDIRS=test ENDIF +IF[{- !$disabled{demos} -}] + SUBDIRS=demos +ENDIF IF[{- !$disabled{'deprecated-3.0'} -}] SUBDIRS=engines ENDIF |