]> git.sur5r.net Git - openocd/commitdiff
MinGW: always use "-D__USE_MINGW_ANSI_STDIO"
authorRedirect 'Slash' NIL <redirect.slash.nil@gmail.com>
Tue, 20 Oct 2009 00:55:40 +0000 (17:55 -0700)
committerDavid Brownell <dbrownell@users.sourceforge.net>
Tue, 20 Oct 2009 00:55:40 +0000 (17:55 -0700)
This is unfortunately needed to make stdio work like OpenOCD expects -- matching
the ANSI-C standard, instead of MS-Windows.

I tested it in both MinGW-W64 on Vista 64 and MinGW-W32 on XP, and I don't
see any adverse effects to enabling it for all MinGW versions.

configure.in

index 8e2881cf43beb049931f3f71c82084095c4d2457..1d3f0ec67f4ff7e0db0bf12ceb6c5a0a766ad164 100644 (file)
@@ -481,6 +481,8 @@ case $host in
       AC_MSG_WARN([--disable-parport-giveio is not supported by MinGW32 hosts])
     fi
     parport_use_giveio=yes
+    
+    CFLAGS="$CFLAGS -D__USE_MINGW_ANSI_STDIO"
 
     AC_DEFINE(IS_MINGW, 1, [1 if building for MinGW.])
     AC_DEFINE(IS_WIN32, 1, [1 if building for Win32.])