From: J.W. Jagersma Date: Sun, 25 Sep 2022 16:58:13 +0000 (+0200) Subject: djgpp: Inherit config from BASE_unix X-Git-Tag: openssl-3.2.0-alpha1~1998 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=29d82bd95b6ef3428c7e776221612a083994219d;p=thirdparty%2Fopenssl.git 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) --- diff --git a/Configurations/50-djgpp.conf b/Configurations/50-djgpp.conf index 16888924d60..fbe4911c420 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",