# HG changeset patch # User Ryan C. Gordon # Date 1171280718 0 # Node ID ba3abfa20e18836fdf9e1a35becc9c7d3747fee4 # Parent af4d584e0edb6294c909d1baadeaa5927154dc7a Digital Mars has stdint.h, so use the header on Windows with that compiler. Fixes Bugzilla #376. diff -r af4d584e0edb -r ba3abfa20e18 include/SDL_config_win32.h --- a/include/SDL_config_win32.h Mon Feb 12 10:52:10 2007 +0000 +++ b/include/SDL_config_win32.h Mon Feb 12 11:45:18 2007 +0000 @@ -27,7 +27,7 @@ /* This is a set of defines to configure the SDL features */ -#ifdef __GNUC__ +#if defined(__GNUC__) || defined(__DMC__) #define HAVE_STDINT_H 1 #elif defined(_MSC_VER) typedef signed __int8 int8_t;