aboutsummaryrefslogtreecommitdiffstats
path: root/pc/config.h
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2010-07-16 12:27:41 +0300
committerArnold D. Robbins <arnold@skeeve.com>2010-07-16 12:27:41 +0300
commit61bb57af53ebe916d2db6e3585d4fc7ac1d99b92 (patch)
tree2bfc4e5b127618d286f57a87d416702131b1b01d /pc/config.h
parent0a9ae0c89481db540e1b817a63cc6c793a62c90d (diff)
downloadegawk-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.h12
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 */