From 6e5c8b7a69858f3197f0e2154c238009f7313c20 Mon Sep 17 00:00:00 2001 From: Ken Foskey Date: Tue, 8 Oct 2002 08:21:53 +0000 Subject: dmake: Volker 4nt patches --- dmake/win95/microsft/config.h | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'dmake/win95/microsft/config.h') diff --git a/dmake/win95/microsft/config.h b/dmake/win95/microsft/config.h index 862b1d5b181c..ca301ff87281 100644 --- a/dmake/win95/microsft/config.h +++ b/dmake/win95/microsft/config.h @@ -1,4 +1,4 @@ -/* RCS $Id: config.h,v 1.1.1.1 2000-09-22 15:33:36 hr Exp $ +/* RCS $Id: config.h,v 1.2 2002-10-08 09:21:53 waratah Exp $ -- -- SYNOPSIS -- Configurarion include file. @@ -39,7 +39,8 @@ #define coreleft() 0L /* MSC Version 4.0 doesn't understand SIGTERM, later versions do. */ -#ifndef SIGTERM +/* config.h is included before signal.h therefore test MSC version */ +#if _MSC_VER < 500 # define SIGTERM SIGINT #endif @@ -66,6 +67,11 @@ /* MSC doesn't seem to care about CONST */ #define CONST +/* 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 + + #ifndef MSDOS # define MSDOS 1 #endif -- cgit