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:03:58 +0200
commited634b1ea4e1826916dee97674fd09b5446139cb (patch)
treefe6da1e290b385946e8fc39cdc21d598b48e1add /Configurations
parent8ff66343bdf635ad574e9db4d4fca8f82c4bcc98 (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) (cherry picked from commit 29d82bd95b6ef3428c7e776221612a083994219d)
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",