[vlc-commits] Chromecast: fix compilation for INT64_C definition

Jean-Baptiste Kempf git at videolan.org
Sun Oct 12 18:54:53 CEST 2014


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sat Oct 11 18:25:26 2014 +0200| [5ff089b5119b0fd2fc8a0b037e93fb2e0910750f] | committer: Jean-Baptiste Kempf

Chromecast: fix compilation for INT64_C definition

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

 modules/stream_out/chromecast/cast.cpp |    4 ++++
 1 file changed, 4 insertions(+)

diff --git a/modules/stream_out/chromecast/cast.cpp b/modules/stream_out/chromecast/cast.cpp
index 7a93648..68931ca 100644
--- a/modules/stream_out/chromecast/cast.cpp
+++ b/modules/stream_out/chromecast/cast.cpp
@@ -33,6 +33,10 @@
 # include <poll.h>
 #endif
 
+#ifndef __STDC_CONSTANT_MACROS
+# define __STDC_CONSTANT_MACROS
+#endif
+
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_sout.h>



More information about the vlc-commits mailing list