diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2010-07-16 12:27:41 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2010-07-16 12:27:41 +0300 |
commit | 61bb57af53ebe916d2db6e3585d4fc7ac1d99b92 (patch) | |
tree | 2bfc4e5b127618d286f57a87d416702131b1b01d /pc/config.h | |
parent | 0a9ae0c89481db540e1b817a63cc6c793a62c90d (diff) | |
download | egawk-61bb57af53ebe916d2db6e3585d4fc7ac1d99b92.tar.gz egawk-61bb57af53ebe916d2db6e3585d4fc7ac1d99b92.tar.bz2 egawk-61bb57af53ebe916d2db6e3585d4fc7ac1d99b92.zip |
Move to gawk-2.15.3.
Diffstat (limited to 'pc/config.h')
-rw-r--r-- | pc/config.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/pc/config.h b/pc/config.h index 9311ee61..85b3c638 100644 --- a/pc/config.h +++ b/pc/config.h @@ -1,7 +1,7 @@ /* * config.h -- configuration definitions for gawk. * - * MS-DOS systems using MSC 5.1 + * OS/2 or MS-DOS systems using emx/gcc or MSC */ /* @@ -124,7 +124,9 @@ * Your system does not have the strcasemp() and strncasecmp() * routines that originated in Berkeley Unix. */ -#define STRCASE_MISSING 1 +/* #define STRCASE_MISSING 1 */ +#define strcasecmp stricmp +#define strncasecmp strnicmp /* * STRCHR_MISSING @@ -258,6 +260,7 @@ /* #define DEFPATH ".:/usr/lib/awk:/usr/local/lib/awk" */ /* #define ENVSEP ':' */ +#define ENVSEP ';' /* * alloca already has a prototype defined - don't redefine it @@ -269,4 +272,9 @@ */ /* #define SRANDOM_PROTO 1 */ +/* + * getpgrp() in sysvr4 and POSIX takes no argument + */ +/* #define GETPGRP_NOARG 0 */ + /* anything that follows is for system-specific short-term kludges */ |