From 7fd8e21628de0bb2890ae0afa194c545aafa7931 Mon Sep 17 00:00:00 2001 From: Paul Fertser Date: Sat, 7 May 2016 19:35:22 +0300 Subject: [PATCH] configure.ac: support MSYS with newer config.guess MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Upstream commit http://git.savannah.gnu.org/gitweb/?p=config.git;a=commitdiff;h=f4ebd3ed097771a729b68e688236aea665e7c1f3 makes both i386 and amd64 MSYS (and MSYS2) systems be detected as *-pc-msys . With this patch OpenOCD builds without any additional tweaks on MSYS2 with the latest config.guess. Change-Id: I1ae4154f76125a84078926b425fa989904639ce0 Reported-by: "Stevens, Kelly E. M." Signed-off-by: Paul Fertser Reviewed-on: http://openocd.zylin.com/3468 Tested-by: jenkins Reviewed-by: Andreas Färber Reviewed-by: Freddie Chopin --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index aed8bce5fa..fb5514ee69 100644 --- a/configure.ac +++ b/configure.ac @@ -585,7 +585,7 @@ case $host in AC_DEFINE([IS_WIN32], [1], [1 if building for Win32.]) AC_DEFINE([IS_DARWIN], [0], [0 if not building for Darwin.]) ;; - *-mingw*) + *-mingw* | *-msys*) is_mingw=yes is_win32=yes parport_use_ppdev=no -- 2.30.2