summaryrefslogtreecommitdiffstats
path: root/media/libvpx/stdint.patch
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /media/libvpx/stdint.patch
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'media/libvpx/stdint.patch')
-rw-r--r--media/libvpx/stdint.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/media/libvpx/stdint.patch b/media/libvpx/stdint.patch
new file mode 100644
index 000000000..cfa6f3327
--- /dev/null
+++ b/media/libvpx/stdint.patch
@@ -0,0 +1,20 @@
+--- vpx/vpx_integer.h- 2014-09-17 15:49:58.000000000 -0700
++++ vpx/vpx_integer.h 2014-09-17 15:52:59.000000000 -0700
+@@ -15,6 +15,8 @@
+ /* get ptrdiff_t, size_t, wchar_t, NULL */
+ #include <stddef.h>
+
++#if !defined(VPX_DONT_DEFINE_STDINT_TYPES)
++
+ #if (defined(_MSC_VER) && (_MSC_VER < 1600)) || defined(VPX_EMULATE_INTTYPES)
+ typedef signed char int8_t;
+ typedef signed short int16_t;
+@@ -56,6 +58,8 @@
+
+ #endif
+
++#endif // VPX_DONT_DEFINE_STDINT_TYPES
++
+ /* VS2010 defines stdint.h, but not inttypes.h */
+ #if defined(_MSC_VER) && _MSC_VER < 1800
+ #define PRId64 "I64d"