macos_fix.patch 539 B

12345678910111213141516171819
  1. diff --git a/include/ogg/os_types.h b/include/ogg/os_types.h
  2. index eb8a322..e655a1d 100644
  3. --- a/include/ogg/os_types.h
  4. +++ b/include/ogg/os_types.h
  5. @@ -72,11 +72,11 @@
  6. # include <sys/types.h>
  7. typedef int16_t ogg_int16_t;
  8. - typedef uint16_t ogg_uint16_t;
  9. + typedef u_int16_t ogg_uint16_t;
  10. typedef int32_t ogg_int32_t;
  11. - typedef uint32_t ogg_uint32_t;
  12. + typedef u_int32_t ogg_uint32_t;
  13. typedef int64_t ogg_int64_t;
  14. - typedef uint64_t ogg_uint64_t;
  15. + typedef u_int64_t ogg_uint64_t;
  16. #elif defined(__HAIKU__)