diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2007-09-20 13:35:17 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2007-09-20 13:35:17 +0000 |
commit | b3af662c10a45673d3a0dc9d1ee01dd2707ad0f5 (patch) | |
tree | 12d5c974bbfa7fe63f9b17f633db077983a2d80d /dmake | |
parent | 98b9a81ca298299ba33b5bea163f25df758460f0 (diff) |
INTEGRATION: CWS os2port01 (1.6.6); FILE MERGED
2007/09/20 07:04:44 obr 1.6.6.3: fix for build breaker (not found earlier because prebuild binaries are used in SUN build environment
2007/08/08 08:43:31 obr 1.6.6.2: RESYNC: (1.6-1.7); FILE MERGED
2006/12/28 14:54:34 ydario 1.6.6.1: OS/2 initial import.
Diffstat (limited to 'dmake')
-rw-r--r-- | dmake/unix/ruletab.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/dmake/unix/ruletab.c b/dmake/unix/ruletab.c index fd78c1bbe3b0..2ff3271de595 100644 --- a/dmake/unix/ruletab.c +++ b/dmake/unix/ruletab.c @@ -1,6 +1,6 @@ /* $RCSfile: ruletab.c,v $ --- $Revision: 1.7 $ --- last change: $Author: vg $ $Date: 2006-09-25 09:47:45 $ +-- $Revision: 1.8 $ +-- last change: $Author: vg $ $Date: 2007-09-20 14:35:17 $ -- -- SYNOPSIS -- Default initial configuration of dmake. @@ -32,8 +32,13 @@ * strictly so that dmake can parse the STARTUP makefile */ static char *_rules[] = { +#ifdef __EMX__ + "MAXLINELENGTH := 8190", + "MAXPROCESSLIMIT := 16", +#else "MAXPROCESSLIMIT := 64", "MAXLINELENGTH := 32766", +#endif #include "dmakeroot.h" ".IMPORT .IGNORE: DMAKEROOT", ".MAKEFILES : makefile.mk Makefile makefile", |