summaryrefslogtreecommitdiffstats
path: root/Configurations/10-main.conf
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2018-01-27 13:06:39 +0100
committerRichard Levitte <levitte@openssl.org>2018-01-28 07:26:11 +0100
commitd76117b9ad9105f179fe6f1e77c5d31cb668019c (patch)
treeb28caa7979eab6247f29f797b0d4fbe7a0247113 /Configurations/10-main.conf
parent36f7be2c2f35bc408c38de611566fae0de0a3b58 (diff)
Make sure all our config targets inherit a BASE template
There were a small number that inherited no BASE, the now inherit BASE_unix. Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/5177)
Diffstat (limited to 'Configurations/10-main.conf')
-rw-r--r--Configurations/10-main.conf2
1 files changed, 2 insertions, 0 deletions
diff --git a/Configurations/10-main.conf b/Configurations/10-main.conf
index e773563dab..21b4f3b2c4 100644
--- a/Configurations/10-main.conf
+++ b/Configurations/10-main.conf
@@ -148,6 +148,7 @@ my %targets = (
#### Basic configs that should work on any 32-bit box
"gcc" => {
+ inherit_from => [ "BASE_unix" ],
cc => "gcc",
cflags => picker(debug => "-O0 -g",
release => "-O3"),
@@ -155,6 +156,7 @@ my %targets = (
bn_ops => "BN_LLONG",
},
"cc" => {
+ inherit_from => [ "BASE_unix" ],
cc => "cc",
cflags => "-O",
thread_scheme => "(unknown)",