# HG changeset patch # User faust3 # Date 1104680868 0 # Node ID 40600d00749366089756b3aaccfb71827444198d # Parent 3c818342a02b41f13d100fc66cbc6b9819c96f3b Mingw compile fix, hm doesn't the inttypes solution always work? diff -r 3c818342a02b -r 40600d007493 tremor/os_types.h --- a/tremor/os_types.h Sun Jan 02 14:41:47 2005 +0000 +++ b/tremor/os_types.h Sun Jan 02 15:47:48 2005 +0000 @@ -41,12 +41,12 @@ typedef unsigned __int32 ogg_uint32_t; typedef __int16 ogg_int16_t; # else - /* Cygwin */ - #include <_G_config.h> - typedef _G_int64_t ogg_int64_t; - typedef _G_int32_t ogg_int32_t; - typedef _G_uint32_t ogg_uint32_t; - typedef _G_int16_t ogg_int16_t; + /* Cygwin/MinGW */ + #include + typedef int64_t ogg_int64_t; + typedef int32_t ogg_int32_t; + typedef uint32_t ogg_uint32_t; + typedef int16_t ogg_int16_t; # endif #elif defined(__MACOS__)