2004-09-08 10:10:31 -05:00
|
|
|
/* $RCSfile: config.h,v $
|
2008-03-05 11:40:17 -06:00
|
|
|
-- $Revision: 1.14 $
|
|
|
|
-- last change: $Author: kz $ $Date: 2008-03-05 18:40:17 $
|
2000-09-22 09:33:37 -05:00
|
|
|
--
|
|
|
|
-- SYNOPSIS
|
|
|
|
-- Configurarion include file.
|
|
|
|
--
|
|
|
|
-- DESCRIPTION
|
|
|
|
-- There is one of these for each specific machine configuration.
|
|
|
|
-- It can be used to further tweek the machine specific sources
|
|
|
|
-- so that they compile.
|
|
|
|
--
|
|
|
|
-- AUTHOR
|
|
|
|
-- Dennis Vadura, dvadura@dmake.wticorp.com
|
|
|
|
--
|
|
|
|
-- WWW
|
|
|
|
-- http://dmake.wticorp.com/
|
|
|
|
--
|
|
|
|
-- COPYRIGHT
|
|
|
|
-- Copyright (c) 1996,1997 by WTI Corp. All rights reserved.
|
|
|
|
--
|
|
|
|
-- This program is NOT free software; you can redistribute it and/or
|
|
|
|
-- modify it under the terms of the Software License Agreement Provided
|
|
|
|
-- in the file <distribution-root>/readme/license.txt.
|
|
|
|
--
|
|
|
|
-- LOG
|
|
|
|
-- Use cvs log to obtain detailed change logs.
|
|
|
|
*/
|
|
|
|
|
2003-03-25 07:05:43 -06:00
|
|
|
/* Attention! In the UNIX like builds with the ./configure ; make
|
|
|
|
procedure a config.h is generated. The autogenerated config.h
|
|
|
|
must not be there to compile dmake with MSC and the
|
|
|
|
"dmake\make.bat win95-vpp40" command. This file sets (among other
|
|
|
|
things) the needed HAS_... and HAVE_... macros.
|
2004-10-22 02:11:51 -05:00
|
|
|
|
|
|
|
Don't forget to update the PACKAGE and VERSION macros!
|
2003-03-25 07:05:43 -06:00
|
|
|
*/
|
|
|
|
|
2004-10-22 02:11:51 -05:00
|
|
|
/* Name and version number of this package */
|
|
|
|
#define PACKAGE "dmake"
|
2008-03-05 11:40:17 -06:00
|
|
|
#define VERSION "4.12"
|
2006-04-20 06:24:12 -05:00
|
|
|
#define BUILDINFO "Windows / MS Visual C++"
|
2004-10-22 02:11:51 -05:00
|
|
|
|
2000-09-22 09:33:37 -05:00
|
|
|
#if defined (_MSC_VER)
|
|
|
|
# if _MSC_VER < 500
|
|
|
|
Force a compile-time blowup.
|
|
|
|
Do not define "#define _MSC_VER" for MSC compilers earlier than 5.0.
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* define this for configurations that don't have the coreleft function
|
|
|
|
* so that the code compiles. To my knowledge coreleft exists only on
|
|
|
|
* Turbo C, but it is needed here since the function is used in many debug
|
|
|
|
* macros. */
|
|
|
|
#define coreleft() 0L
|
|
|
|
|
|
|
|
/* MSC Version 4.0 doesn't understand SIGTERM, later versions do. */
|
2002-10-08 03:21:53 -05:00
|
|
|
/* config.h is included before signal.h therefore test MSC version */
|
|
|
|
#if _MSC_VER < 500
|
2000-09-22 09:33:37 -05:00
|
|
|
# define SIGTERM SIGINT
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Fixes unimplemented line buffering for MSC 5.x and 6.0.
|
|
|
|
* MSC _IOLBF is the same as _IOFBF
|
|
|
|
*/
|
|
|
|
#if defined(MSDOS) && defined (_MSC_VER)
|
|
|
|
# undef _IOLBF
|
|
|
|
# define _IOLBF _IONBF
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* in alloc.h: size_t is redefined
|
|
|
|
* defined in stdio.h which is included by alloc.h
|
|
|
|
*/
|
|
|
|
#if defined(MSDOS) && defined (_MSC_VER)
|
|
|
|
# define _TYPES_
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* in sysintf.c: SIGQUIT is used, this is not defined in MSC */
|
|
|
|
#ifndef SIGQUIT
|
|
|
|
# define SIGQUIT SIGTERM
|
|
|
|
#endif
|
|
|
|
|
2006-04-20 06:24:12 -05:00
|
|
|
/* MSC didn't seem to care about CONST in the past */
|
|
|
|
#ifndef CONST
|
|
|
|
# define CONST
|
|
|
|
#endif
|
2000-09-22 09:33:37 -05:00
|
|
|
|
2007-01-18 02:50:23 -06:00
|
|
|
/* Assume case insensitive file system. */
|
|
|
|
#define CASE_INSENSITIVE_FS 1
|
|
|
|
|
2002-10-08 03:21:53 -05:00
|
|
|
/* MSC has sys/types.h and sys/stat.h (this is tested only with MSVC++ 6.0) */
|
|
|
|
#define HAVE_SYS_TYPES_H 1
|
|
|
|
#define HAVE_SYS_STAT_H 1
|
|
|
|
|
2003-03-25 07:05:43 -06:00
|
|
|
/* These functions are available! (this is tested only with MSVC++ 6.0) */
|
|
|
|
#define HAVE_GETCWD 1
|
|
|
|
#define HAVE_UTIME_NULL 1
|
|
|
|
#define HAVE_TZSET 1
|
2007-01-18 02:50:23 -06:00
|
|
|
#define HAVE_STRLWR 1
|
2003-03-25 07:05:43 -06:00
|
|
|
|
|
|
|
#define HAVE_ERRNO_H 1
|
|
|
|
#define HAVE_STRERROR 1
|
2003-12-17 09:17:06 -06:00
|
|
|
#define HAVE_TEMPNAM 1
|
|
|
|
#define HAVE_FCNTL_H 1
|
2003-03-25 07:05:43 -06:00
|
|
|
|
|
|
|
/* These defines are needed for itypes.h! (this is tested only with MSVC++ 6.0) */
|
|
|
|
#define SIZEOF_INT 4
|
|
|
|
#define SIZEOF_LONG 4
|
|
|
|
#define SIZEOF_SHORT 2
|
2002-10-08 03:21:53 -05:00
|
|
|
|
2000-09-22 09:33:37 -05:00
|
|
|
#ifndef MSDOS
|
|
|
|
# define MSDOS 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* a small problem with pointer to voids on some unix machines needs this */
|
2008-03-05 11:40:17 -06:00
|
|
|
#define DMPVOID void *
|
2000-09-22 09:33:37 -05:00
|
|
|
|
2003-03-25 07:05:43 -06:00
|
|
|
/* Use my own tempnam for MSC Version less than 6.0 */
|
|
|
|
#if _MSC_VER < 600
|
|
|
|
# define tempnam dtempnam
|
|
|
|
#endif
|
2000-09-22 09:33:37 -05:00
|
|
|
|