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 /Configure | |
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 'Configure')
-rwxr-xr-x | Configure | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -77,6 +77,8 @@ EOF # Generic OpenSSL-style methods relating to this support # are always compiled but return NULL if the hardware # support isn't compiled. +# +# enable-demos Enable the building of the example code in the demos directory # no-hw do not compile support for any crypto hardware. # [no-]threads [don't] try to create a library that is suitable for # multithreaded applications (default is "threads" if we @@ -443,6 +445,7 @@ my @disablables = ( "crypto-mdebug", "ct", "default-thread-pool", + "demos", "deprecated", "des", "devcryptoeng", @@ -570,6 +573,7 @@ our %disabled = ( # "what" => "comment" "buildtest-c++" => "default", "crypto-mdebug" => "default", "crypto-mdebug-backtrace" => "default", + "demos" => "default", "devcryptoeng" => "default", "ec_nistp_64_gcc_128" => "default", "egd" => "default", |