diff options
Diffstat (limited to 'pc/config.h')
-rw-r--r-- | pc/config.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/pc/config.h b/pc/config.h index 8adbef0b..63d1fcb7 100644 --- a/pc/config.h +++ b/pc/config.h @@ -2,7 +2,9 @@ /* pc/config.h. Generated automatically by pc/config.sed. */ /* dynamic loading is possible */ -#undef DYNAMIC +#ifdef _WIN32 +#define DYNAMIC 1 +#endif /* Define to 1 if translation of program messages to the user's native language is requested. */ @@ -600,6 +602,13 @@ #define HAVE_POPEN_H 1 #endif +#if defined(__DJGPP__) +typedef unsigned int uint32_t; +typedef int int32_t; +#define INT32_MAX INT_MAX +#define INT32_MIN INT_MIN +#endif + #if defined(__EMX__) #define strcasecmp stricmp #define strncasecmp strnicmp |