- changed mingw host detection to *-mingw instead of *-*-mingw to work with i586-mingw32msvc-gcc
- add replacements.h to log.h to make sure ERROR is undefined on windows git-svn-id: svn://svn.berlios.de/openocd/trunk@191 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
parent
20e4e77cdf
commit
b499b5cbd2
|
@ -87,7 +87,7 @@ AC_ARG_WITH(ftd2xx,
|
||||||
with_ftd2xx=search)
|
with_ftd2xx=search)
|
||||||
|
|
||||||
case $host in
|
case $host in
|
||||||
*-*-cygwin*)
|
*-cygwin*)
|
||||||
is_win32=yes
|
is_win32=yes
|
||||||
|
|
||||||
AC_ARG_ENABLE(parport_giveio,
|
AC_ARG_ENABLE(parport_giveio,
|
||||||
|
@ -106,7 +106,7 @@ case $host in
|
||||||
|
|
||||||
AC_DEFINE(IS_WIN32, 1, [1 if building for Win32.])
|
AC_DEFINE(IS_WIN32, 1, [1 if building for Win32.])
|
||||||
;;
|
;;
|
||||||
*-*-mingw*)
|
*-mingw*)
|
||||||
is_mingw=yes
|
is_mingw=yes
|
||||||
is_win32=yes
|
is_win32=yes
|
||||||
|
|
||||||
|
|
|
@ -20,6 +20,7 @@
|
||||||
#ifndef ERROR_H
|
#ifndef ERROR_H
|
||||||
#define ERROR_H
|
#define ERROR_H
|
||||||
|
|
||||||
|
#include "replacements.h"
|
||||||
#include "command.h"
|
#include "command.h"
|
||||||
|
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
|
Loading…
Reference in New Issue