From: Richard Levitte Date: Mon, 13 Mar 2017 08:09:43 +0000 (+0100) Subject: Recognise mingw64 in config script X-Git-Tag: OpenSSL_1_1_1-pre1~2063 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=57cb3385b109ff66f7cb0b81ad3a89543bfd6f68;p=oweals%2Fopenssl.git Recognise mingw64 in config script Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/2914) --- diff --git a/config b/config index 0ddff8abfc..ad788cbf73 100755 --- a/config +++ b/config @@ -801,6 +801,8 @@ case "$GUESSOS" in options="$options no-asm" fi ;; + i[3456]86-*-mingw) OUT="mingw" ;; + x86_64-*-mingw) OUT="mingw64" ;; # these are all covered by the catchall below i[3456]86-*-cygwin) OUT="Cygwin-x86" ;; *-*-cygwin) OUT="Cygwin-${MACHINE}" ;;