Remove TreeInfo (bug 525371, r=lw).
[mozilla-central.git] / media / libogg / int-types.patch
blob283c681207b60be16052c85b84129e65658630d3
1 --- include/ogg/config_types.h.old 2008-11-10 15:24:49.465597010 +0800
2 +++ include/ogg/config_types.h 2008-11-10 15:25:19.249016710 +0800
3 @@ -3,9 +3,15 @@
5 /* these are filled in by configure */
6 typedef int16_t ogg_int16_t;
7 -typedef u_int16_t ogg_uint16_t;
8 typedef int32_t ogg_int32_t;
9 -typedef u_int32_t ogg_uint32_t;
10 typedef int64_t ogg_int64_t;
12 +#ifdef SOLARIS
13 +typedef uint16_t ogg_uint16_t;
14 +typedef uint32_t ogg_uint32_t;
15 +#else
16 +typedef u_int16_t ogg_uint16_t;
17 +typedef u_int32_t ogg_uint32_t;
18 +#endif
20 #endif