# HG changeset patch # User Sam Lantinga # Date 1151255528 0 # Node ID 17af3557191c6ae5215215c408bb0f9186a71f15 # Parent 2780f547f5e71fe03bce9ba4628528cc6d2ea1b7 Fixed including stdint.h with gcc on Win32 diff -r 2780f547f5e7 -r 17af3557191c include/SDL_config_win32.h --- a/include/SDL_config_win32.h Sat Jun 24 17:36:55 2006 +0000 +++ b/include/SDL_config_win32.h Sun Jun 25 17:12:08 2006 +0000 @@ -44,6 +44,8 @@ #endif #define _UINTPTR_T_DEFINED #endif +#elif defined(__GNUC__) +#define HAVE_STDINT_H 1 #else typedef signed char int8_t; typedef unsigned char uint8_t;