From 29d82bd95b6ef3428c7e776221612a083994219d Mon Sep 17 00:00:00 2001 From: "J.W. Jagersma" Date: Sun, 25 Sep 2022 18:58:13 +0200 Subject: [PATCH] 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 Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/19274) --- Configurations/50-djgpp.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/Configurations/50-djgpp.conf b/Configurations/50-djgpp.conf index 16888924d602a..fbe4911c420d6 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",