Kaydet (Commit) 542120e5 authored tarafından Kurt Zenker's avatar Kurt Zenker

INTEGRATION: CWS dmake412_DEV300 (1.8.2); FILE MERGED

2007/11/12 00:12:02 vq 1.8.2.2: #i83540# Make dmake buildable with .NET 2003 again.
2007/11/11 23:05:48 vq 1.8.2.1: #i83540# Enable parallel builds with native W32 dmake. (First MinGW only.)
üst 7e0d741a
/* RCS $Id: imacs.c,v 1.8 2007-10-15 15:39:37 ihi Exp $
/* RCS $Id: imacs.c,v 1.9 2008-03-05 18:29:01 kz Exp $
--
-- SYNOPSIS
-- Define default internal macros.
......@@ -137,9 +137,14 @@ Create_macro_vars()
_set_int_var( "PREP", "0", M_DEFAULT, &Prep );
(void) Def_macro("MAXLINELENGTH", "1024", M_FLAG | M_DEFAULT);
/* set MAXPROCESSLIMIT high initially so that it allows MAXPROCESS to
* change from command line. */
/* MAXPROCESSLIMIT is overwritten by the ruletab.c settings. Set its
* initial value high so that it allows MAXPROCESS to be changed
* from the command line. */
_set_int_var( "MAXPROCESSLIMIT", "100", M_DEFAULT|M_NOEXPORT,&Max_proclmt );
#if defined(USE_CREATEPROCESS)
/* Set the OS early enough. */
Max_proclmt = MAXIMUM_WAIT_OBJECTS;
#endif
_set_int_var( "MAXPROCESS", "1", M_DEFAULT|M_NOEXPORT, &Max_proc );
sprintf(buf,"%d",NAME_MAX);
_set_int_var( "NAMEMAX", buf, M_DEFAULT|M_NOEXPORT, &NameMax);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment