[Ffmpeg-cvslog] CVS: ffmpeg/libavutil common.h,1.155,1.156

Diego Biurrun CVS diego
Mon Dec 12 01:48:44 CET 2005


Update of /cvsroot/ffmpeg/ffmpeg/libavutil
In directory mail:/var2/tmp/cvs-serv13663/libavutil

Modified Files:
	common.h 
Log Message:
Define EMULATE_INTTYPES for all windows-systems, except Cygwin and MinGW
to simplify usage on Windows.
patch by Fredrik Orderud fredrik - . - orderud - @ - idi - . - ntnu - . - no


Index: common.h
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/libavutil/common.h,v
retrieving revision 1.155
retrieving revision 1.156
diff -u -d -r1.155 -r1.156
--- common.h	5 Dec 2005 23:14:55 -0000	1.155
+++ common.h	12 Dec 2005 00:48:42 -0000	1.156
@@ -10,6 +10,10 @@
 #    define CONFIG_WIN32
 #endif
 
+#if defined(WIN32) && !defined(__MINGW32__) && !defined(__CYGWIN__) && !defined(EMULATE_INTTYPES)
+#    define EMULATE_INTTYPES
+#endif
+
 #ifndef M_PI
 #define M_PI    3.14159265358979323846
 #endif





More information about the ffmpeg-cvslog mailing list