[MPlayer-cvslog] CVS: main/tremor os_types.h,1.1,1.2
Sascha Sommer CVS
syncmail at mplayerhq.hu
Sun Jan 2 16:47:51 CET 2005
CVS change done by Sascha Sommer CVS
Update of /cvsroot/mplayer/main/tremor
In directory mail:/var2/tmp/cvs-serv8801/tremor
Modified Files:
os_types.h
Log Message:
Mingw compile fix, hm doesn't the inttypes solution always work?
Index: os_types.h
===================================================================
RCS file: /cvsroot/mplayer/main/tremor/os_types.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- os_types.h 30 Dec 2004 12:09:20 -0000 1.1
+++ os_types.h 2 Jan 2005 15:47:48 -0000 1.2
@@ -41,12 +41,12 @@
typedef unsigned __int32 ogg_uint32_t;
typedef __int16 ogg_int16_t;
# else
- /* Cygwin */
- #include <_G_config.h>
- typedef _G_int64_t ogg_int64_t;
- typedef _G_int32_t ogg_int32_t;
- typedef _G_uint32_t ogg_uint32_t;
- typedef _G_int16_t ogg_int16_t;
+ /* Cygwin/MinGW */
+ #include <inttypes.h>
+ typedef int64_t ogg_int64_t;
+ typedef int32_t ogg_int32_t;
+ typedef uint32_t ogg_uint32_t;
+ typedef int16_t ogg_int16_t;
# endif
#elif defined(__MACOS__)
More information about the MPlayer-cvslog
mailing list