diff options
author | Kurt Zenker <kz@openoffice.org> | 2008-03-05 17:35:53 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2008-03-05 17:35:53 +0000 |
commit | a4a6f8750a695fad2c2fffc5f5fd66046a69f84e (patch) | |
tree | ee9b393aabd885adf4279a4e9eebbe6dbace4c7f /dmake | |
parent | da929905344df31b55a2ac12e8aaec0516f9d73b (diff) |
INTEGRATION: CWS dmake412_DEV300 (1.5.2); FILE MERGED
2007/11/11 23:05:48 vq 1.5.2.1: #i83540# Enable parallel builds with native W32 dmake. (First MinGW only.)
Diffstat (limited to 'dmake')
-rw-r--r-- | dmake/msdos/runargv.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/dmake/msdos/runargv.c b/dmake/msdos/runargv.c index 954a03dc8..d91e8bffc 100644 --- a/dmake/msdos/runargv.c +++ b/dmake/msdos/runargv.c @@ -1,4 +1,4 @@ -/* RCS $Id: runargv.c,v 1.5 2007-10-15 15:43:15 ihi Exp $ +/* RCS $Id: runargv.c,v 1.6 2008-03-05 18:35:53 kz Exp $ -- -- SYNOPSIS -- Run a sub process. @@ -23,6 +23,12 @@ -- Use cvs log to obtain detailed change logs. */ +#if defined(USE_CREATEPROCESS) +/* MSVC6.0 and newer and MinGW use the parallel build enabled runargv(). */ +Force a compile-time blowup. +This file should not be used, use unix/runargv.c instead. +#endif + #include <process.h> #include <errno.h> #include "extern.h" |