From 1a25ec7379a33cd8051d373e47043172ce2ad0b9 Mon Sep 17 00:00:00 2001
From: Richard Levitte <levitte@openssl.org>
Date: Mon, 13 Mar 2017 09:09:43 +0100
Subject: [PATCH] Recognise mingw64 in config script

Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2914)
(cherry picked from commit 57cb3385b109ff66f7cb0b81ad3a89543bfd6f68)
---
 config | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/config b/config
index 1341fd622d..d3e5719625 100755
--- a/config
+++ b/config
@@ -806,6 +806,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}" ;;
-- 
2.25.1