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 | 6d0978319e2f5bd9dd37982612cdcab861ae5279 (patch) | |
tree | 0cdae3167b374cbb7fd56e2cb05ea359620ee529 /dmake | |
parent | 377862e9474508066792b22ef6ad6190ec6ff765 (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 11a5ebd4b066..373b075c3fc5 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" |