diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-03-10 10:14:19 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-03-10 10:14:19 +0200 |
commit | 840661815d5063942b4475a908af423cf6bc813c (patch) | |
tree | f9039dcd82e2a1c4db32b58728ba549b0fc42806 /pc/config.h | |
parent | c7cf0616ac46f08398bf6ebaf38ca2ef32a05cdc (diff) | |
download | egawk-840661815d5063942b4475a908af423cf6bc813c.tar.gz egawk-840661815d5063942b4475a908af423cf6bc813c.tar.bz2 egawk-840661815d5063942b4475a908af423cf6bc813c.zip |
Update pc/ stuff.
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 |