aboutsummaryrefslogtreecommitdiffstats
path: root/pc
diff options
context:
space:
mode:
Diffstat (limited to 'pc')
-rw-r--r--pc/ChangeLog5
-rw-r--r--pc/config.h6
2 files changed, 11 insertions, 0 deletions
diff --git a/pc/ChangeLog b/pc/ChangeLog
index e616ad28..b6d7be83 100644
--- a/pc/ChangeLog
+++ b/pc/ChangeLog
@@ -1,3 +1,8 @@
+Tue Jan 4 11:20:40 2011 Arnold Robbins <arnold@skeeve.com>
+
+ * config.h: Add PIPES_SIMULATED and definition of _NFILE for
+ DJGPP.
+
Sat Dec 18 22:12:42 2010 Arnold Robbins <arnold@skeeve.com>
* gawkw32.def: Removed.
diff --git a/pc/config.h b/pc/config.h
index 04ab519d..a7bd593c 100644
--- a/pc/config.h
+++ b/pc/config.h
@@ -527,3 +527,9 @@
#endif
/* #define NO_LINT 1 */
+#if defined(__DJGPP__) /* || defined(__MINGW32__) ??? */
+#define PIPES_SIMULATED 1
+#ifndef _NFILE
+#define _NFILE 40
+#endif
+#endif