From 0bcfeadd6f6ce21ee82aad8f99b3b7a3dd2bb763 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henri=20Hyyryl=C3=A4inen?= Date: Sat, 5 Mar 2016 12:36:03 +0200 Subject: [PATCH] Fixed linux compile --- DependenciesSource/libogg-1.2.2/include/ogg/os_types.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/DependenciesSource/libogg-1.2.2/include/ogg/os_types.h b/DependenciesSource/libogg-1.2.2/include/ogg/os_types.h index d6691b7..69babb6 100644 --- a/DependenciesSource/libogg-1.2.2/include/ogg/os_types.h +++ b/DependenciesSource/libogg-1.2.2/include/ogg/os_types.h @@ -138,6 +138,16 @@ typedef unsigned int ogg_uint32_t; typedef long long int ogg_int64_t; +#elif defined(__linux__) + + /* Linux GCC or clang */ +# include + typedef int16_t ogg_int16_t; + typedef uint16_t ogg_uint16_t; + typedef int32_t ogg_int32_t; + typedef uint32_t ogg_uint32_t; + typedef int64_t ogg_int64_t; + typedef uint64_t ogg_uint64_t; #else # include