From: Werner Koch Date: Thu, 19 Jan 2012 17:44:39 +0000 (+0100) Subject: Support the mingw-w64 toolchain. X-Git-Tag: gpgme-1.3.2~17 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=24a10a4af948ebb1c767b69a92fa5bbe933a417c;p=gpgme.git Support the mingw-w64 toolchain. * autogen.sh (build-w32): Add i686-w64-mingw32 to the toolprefix. --- diff --git a/autogen.sh b/autogen.sh index b988ace..1f22367 100755 --- a/autogen.sh +++ b/autogen.sh @@ -102,11 +102,11 @@ if [ "$myhost" = "w32" ]; then 64) w32root="$w64root" [ -z "$w32root" ] && w32root="$HOME/w64root" - toolprefixes="amd64-mingw32msvc" + toolprefixes="i686-w64-mingw32 amd64-mingw32msvc" ;; *) [ -z "$w32root" ] && w32root="$HOME/w32root" - toolprefixes="i586-mingw32msvc i386-mingw32msvc" + toolprefixes="i686-w64-mingw32 i586-mingw32msvc i386-mingw32msvc" ;; esac echo "Using $w32root as standard install directory" >&2