root/BePorts/trunk/media-libs/libogg/libogg-1.1.3-haiku.diff
| Revision 77, 2.3 kB (checked in by scottmc, 4 months ago) |
|---|
-
libogg-1.1.3/configure.in
old new 84 84 AC_MSG_CHECKING(for int16_t) 85 85 AC_CACHE_VAL(has_int16_t, 86 86 [AC_TRY_RUN([ 87 #if def __BEOS__87 #if defined __BEOS__ && !defined __HAIKU__ 88 88 #include <inttypes.h> 89 89 #endif 90 90 #include <sys/types.h> … … 100 100 AC_MSG_CHECKING(for int32_t) 101 101 AC_CACHE_VAL(has_int32_t, 102 102 [AC_TRY_RUN([ 103 #if def __BEOS__103 #if defined __BEOS__ && !defined __HAIKU__ 104 104 #include <inttypes.h> 105 105 #endif 106 106 #include <sys/types.h> … … 116 116 AC_MSG_CHECKING(for uint32_t) 117 117 AC_CACHE_VAL(has_uint32_t, 118 118 [AC_TRY_RUN([ 119 #if def __BEOS__119 #if defined __BEOS__ && !defined __HAIKU__ 120 120 #include <inttypes.h> 121 121 #endif 122 122 #include <sys/types.h> … … 132 132 AC_MSG_CHECKING(for uint16_t) 133 133 AC_CACHE_VAL(has_uint16_t, 134 134 [AC_TRY_RUN([ 135 #if def __BEOS__135 #if defined __BEOS__ && !defined __HAIKU__ 136 136 #include <inttypes.h> 137 137 #endif 138 138 #include <sys/types.h> … … 148 148 AC_MSG_CHECKING(for u_int32_t) 149 149 AC_CACHE_VAL(has_u_int32_t, 150 150 [AC_TRY_RUN([ 151 #if def __BEOS__151 #if defined __BEOS__ && !defined __HAIKU__ 152 152 #include <inttypes.h> 153 153 #endif 154 154 #include <sys/types.h> … … 164 164 AC_MSG_CHECKING(for u_int16_t) 165 165 AC_CACHE_VAL(has_u_int16_t, 166 166 [AC_TRY_RUN([ 167 #if def __BEOS__167 #if defined __BEOS__ && !defined __HAIKU__ 168 168 #include <inttypes.h> 169 169 #endif 170 170 #include <sys/types.h> … … 180 180 AC_MSG_CHECKING(for int64_t) 181 181 AC_CACHE_VAL(has_int64_t, 182 182 [AC_TRY_RUN([ 183 #if def __BEOS__183 #if defined __BEOS__ && !defined __HAIKU__ 184 184 #include <inttypes.h> 185 185 #endif 186 186 #include <sys/types.h> -
libogg-1.1.3/include/ogg/os_types.h
old new 73 73 typedef u_int32_t ogg_uint32_t; 74 74 typedef int64_t ogg_int64_t; 75 75 76 #elif defined(__BEOS__) 76 #elif defined(__HAIKU__) 77 78 /* Haiku */ 79 # include <sys/types.h> 80 typedef short ogg_int16_t; 81 typedef unsigned short ogg_uint16_t; 82 typedef int ogg_int32_t; 83 typedef unsigned int ogg_uint32_t; 84 typedef long long ogg_int64_t; 85 86 #elif defined(__BEOS__) 77 87 78 88 /* Be */ 79 89 # include <inttypes.h>
Note: See TracBrowser for help on using the browser.