From: Spencer Oliver Date: Tue, 16 Aug 2011 16:33:19 +0000 (+0100) Subject: build: check buspirate build host X-Git-Tag: v0.6.0-rc1~609 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=358df39b43b27aede1adac65f5e3627d42622fe3;p=openocd build: check buspirate build host buspirate has never supported building on native windows (mingw). configure will now check this is not the case. Signed-off-by: Spencer Oliver --- diff --git a/configure.ac b/configure.ac index 1bbc9769..b6c04ab4 100644 --- a/configure.ac +++ b/configure.ac @@ -567,6 +567,10 @@ case $host in fi parport_use_giveio=yes + if test x$build_buspirate = xyes; then + AC_MSG_ERROR([buspirate currently not supported by MinGW32 hosts]) + fi + CFLAGS="$CFLAGS -D__USE_MINGW_ANSI_STDIO" AC_DEFINE(IS_MINGW, 1, [1 if building for MinGW.])