1 /* RCS $Id: config.h,v 1.2 2008-03-05 18:38:08 kz Exp $
4 -- Configurarion include file.
7 -- There is one of these for each specific machine configuration.
8 -- It can be used to further tweek the machine specific sources
9 -- so that they compile.
12 -- Dennis Vadura, dvadura@dmake.wticorp.com
15 -- http://dmake.wticorp.com/
18 -- Copyright (c) 1996,1997 by WTI Corp. All rights reserved.
20 -- This program is NOT free software; you can redistribute it and/or
21 -- modify it under the terms of the Software License Agreement Provided
22 -- in the file <distribution-root>/readme/license.txt.
25 -- Use cvs log to obtain detailed change logs.
28 #if defined (_MSC_VER)
30 Force a compile
-time blowup
.
31 Do
not define define _MSC_VER
for MSC compilers ealier than
5.0.
35 /* define this for configurations that don't have the coreleft function
36 * so that the code compiles. To my knowledge coreleft exists only on
37 * Turbo C, but it is needed here since the function is used in many debug
41 /* MSC Version 4.0 doesn't understand SIGTERM, later versions do. */
43 # define SIGTERM SIGINT
46 /* This should already be defined under C6.0, also for OS/2 we want buffering
47 * to minimise the mess during parallel makes.
50 # define _IOLBF _IOFBF
53 /* in alloc.h: size_t is redefined
54 * defined in stdio.h which is included by alloc.h
56 #if defined(MSDOS) && defined (_MSC_VER)
60 /* Don't need this one either */
63 /* in sysintf.c: SIGQUIT is used, this is not defined in MSC */
65 # define SIGQUIT SIGTERM
68 /* a small problem with pointer to voids on some unix machines needs this */
69 #define DMPVOID void *
71 /* C-lib redefinitions... */
76 #define access _access
77 #define getpid _getpid
78 #define getcwd _getcwd