summaryrefslogtreecommitdiffstats
path: root/Configurations
diff options
context:
space:
mode:
authorJ.W. Jagersma <jwjagersma@gmail.com>2022-09-25 18:58:13 +0200
committerTomas Mraz <tomas@openssl.org>2022-09-29 12:00:30 +0200
commit29d82bd95b6ef3428c7e776221612a083994219d (patch)
treec95bd513699cee5458268edc5c6c38a799aa5642 /Configurations
parent9710d72b95f4fc218ed613f42dc90ad0d263b14f (diff)
djgpp: Inherit config from BASE_unix
Build failed on djgpp due to missing config vars 'AR' and 'ARFLAGS'. Additionally, '-lz' was not added to 'lflags' when zlib support was enabled. Inheriting configuration variables from BASE_unix solves both these issues. CLA: trivial Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19274)
Diffstat (limited to 'Configurations')
-rw-r--r--Configurations/50-djgpp.conf1
1 files changed, 1 insertions, 0 deletions
diff --git a/Configurations/50-djgpp.conf b/Configurations/50-djgpp.conf
index 16888924d6..fbe4911c42 100644
--- a/Configurations/50-djgpp.conf
+++ b/Configurations/50-djgpp.conf
@@ -4,6 +4,7 @@
my %targets = (
"DJGPP" => {
+ inherit_from => [ "BASE_unix" ],
CC => "gcc",
CFLAGS => "-fomit-frame-pointer -O2 -Wall",
cflags => "-I/dev/env/WATT_ROOT/inc -DTERMIOS -DL_ENDIAN",