[vlc-devel] commit: WinCE: Require a recent enough mingwce to fix *printf problems ( Pierre Ynard )

git version control git at videolan.org
Sat May 16 01:09:57 CEST 2009


vlc | branch: master | Pierre Ynard <linkfanel at yahoo.fr> | Fri May 15 15:19:38 2009 +0200| [37b175d5552f731bfc8f7aa439034328bc14b668] | committer: Rémi Denis-Courmont 

WinCE: Require a recent enough mingwce to fix *printf problems

This just in: CeGCC has a MinGW with working replacement *printf
functions. Just like for mingw32, require (and allow building with) a
recent enough version of mingwce.

Since MinGW is patched by CeGCC, this check is not strictly sufficient;
but at least this allows to have working WinCE builds again.

Signed-off-by: Rémi Denis-Courmont <remi at remlab.net>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=37b175d5552f731bfc8f7aa439034328bc14b668
---

 configure.ac         |    2 +-
 include/vlc_fixups.h |   13 -------------
 2 files changed, 1 insertions(+), 14 deletions(-)

diff --git a/configure.ac b/configure.ac
index cb66dd0..8d51b84 100644
--- a/configure.ac
+++ b/configure.ac
@@ -471,7 +471,7 @@ VLC_ADD_CFLAGS([libvlccore],[${INCICONV}])
 VLC_ADD_LIBS([libvlccore],[${LTLIBICONV}])
 
 dnl Check for broken versions of mingw-runtime compatability library
-AS_IF([test "${SYS}" = "mingw32"], [
+AS_IF([test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"], [
     AC_MSG_CHECKING(for broken mingw-runtime)
     AC_PREPROC_IFELSE([
 #include <_mingw.h>
diff --git a/include/vlc_fixups.h b/include/vlc_fixups.h
index 98c680a..5636832 100644
--- a/include/vlc_fixups.h
+++ b/include/vlc_fixups.h
@@ -26,19 +26,6 @@
 #ifndef LIBVLC_FIXUPS_H
 # define LIBVLC_FIXUPS_H 1
 
-#ifdef __MINGW32_VERSION
-# if __MINGW32_MAJOR_VERSION == 3 && __MINGW32_MINOR_VERSION < 14
-#  error This mingw-runtime is too old, it has a broken vsnprintf
-# endif
-/* mingw-runtime provides the whole printf family in a c99 compliant way. */
-/* the way to enable this is to define __USE_MINGW_ANSI_STDIO, or something
- * such as _ISOC99_SOURCE; the former is done by configure.ac */
-/* This isn't done here, since some modules don't include config.h and
- * therefore this as the first include file */
-#elif defined UNDER_CE
-# error Window CE support for *printf needs fixing.
-#endif
-
 #if !defined (HAVE_GMTIME_R) || !defined (HAVE_LOCALTIME_R)
 # include <time.h> /* time_t */
 #endif




More information about the vlc-devel mailing list