diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-03-10 10:14:57 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-03-10 10:14:57 +0200 |
commit | 087cb82ddc80e61b823c2d61a2db1ff784f779b4 (patch) | |
tree | 830f35907bffb94b47448c686658fb5de387e59d /pc/config.h | |
parent | dfe4f07ccfd201d296dc10cc65293267ace692c1 (diff) | |
parent | 840661815d5063942b4475a908af423cf6bc813c (diff) | |
download | egawk-087cb82ddc80e61b823c2d61a2db1ff784f779b4.tar.gz egawk-087cb82ddc80e61b823c2d61a2db1ff784f779b4.tar.bz2 egawk-087cb82ddc80e61b823c2d61a2db1ff784f779b4.zip |
Merge branch 'master' into porting
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 |