From c4bfccfff85cea4dd16d701868e0efa9d80384cc Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Mon, 13 Mar 2017 09:09:43 +0100 Subject: [PATCH] Recognise mingw64 in config script Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/2914) --- config | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config b/config index bba370c4f3..4781bf5645 100755 --- a/config +++ b/config @@ -848,6 +848,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 # *-dgux) OUT="dgux" ;; mips-sony-newsos4) OUT="newsos4-gcc" ;; -- 2.25.1