diff options
author | Richard Levitte <levitte@openssl.org> | 2017-03-13 09:09:43 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2017-03-13 10:42:02 +0100 |
commit | 57cb3385b109ff66f7cb0b81ad3a89543bfd6f68 (patch) | |
tree | 2b1bc11fa8e4fc82a3f28140021751b344aa1122 /config | |
parent | Fix some doc nits (diff) | |
download | openssl-57cb3385b109ff66f7cb0b81ad3a89543bfd6f68.tar.xz openssl-57cb3385b109ff66f7cb0b81ad3a89543bfd6f68.zip |
Recognise mingw64 in config script
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2914)
Diffstat (limited to 'config')
-rwxr-xr-x | config | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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}" ;; |