diff options
author | Ken Foskey <waratah@openoffice.org> | 2002-10-08 08:21:53 +0000 |
---|---|---|
committer | Ken Foskey <waratah@openoffice.org> | 2002-10-08 08:21:53 +0000 |
commit | 6e5c8b7a69858f3197f0e2154c238009f7313c20 (patch) | |
tree | 2c86c1850cd210d755768dd9202fc39e04fce328 /dmake/win95/microsft | |
parent | 02300731171f4ea7a41460db3d5991fc6ddce76c (diff) |
dmake: Volker 4nt patches
Diffstat (limited to 'dmake/win95/microsft')
-rw-r--r-- | dmake/win95/microsft/config.h | 10 |
1 files changed, 8 insertions, 2 deletions
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 |