]> git.sesse.net Git - vlc/blobdiff - include/vlc_fixups.h
wince: fix build of ts module
[vlc] / include / vlc_fixups.h
index ecc8fecef69d1727acc3f39f35b3677ff852e211..a02eeceb974186caf7261f71076dd1c732fd53ff 100644 (file)
 #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
@@ -57,7 +44,8 @@ typedef struct
 
 #if !defined (HAVE_STRLCPY) || \
     !defined (HAVE_STRNDUP) || \
-    !defined (HAVE_STRNLEN)
+    !defined (HAVE_STRNLEN) || \
+    !defined (HAVE_GETCWD)
 # include <stddef.h> /* size_t */
 #endif
 
@@ -141,6 +129,10 @@ struct tm *localtime_r (const time_t *, struct tm *);
 void rewind (FILE *);
 #endif
 
+#ifndef HAVE_GETCWD
+char *getcwd (char *buf, size_t size);
+#endif
+
 #ifdef __cplusplus
 } /* extern "C" */
 #endif
@@ -175,13 +167,8 @@ typedef void *locale_t;
 #endif
 
 /* libintl support */
-#define _(str) vlc_gettext (str)
-
-#if defined (ENABLE_NLS)
-# include <libintl.h>
-#endif
-
-#define N_(str) gettext_noop (str)
+#define _(str)            vlc_gettext (str)
+#define N_(str)           gettext_noop (str)
 #define gettext_noop(str) (str)
 
 #ifndef HAVE_SWAB