diff options
author | stanton <stanton> | 1999-04-23 01:57:12 (GMT) |
---|---|---|
committer | stanton <stanton> | 1999-04-23 01:57:12 (GMT) |
commit | a9e9c4de3de788a605af9a2d4efa389f32735e21 (patch) | |
tree | 491b162c21e4a9a83913c21d67235a18107cc5c5 /generic/tclPort.h | |
parent | 4b582e98895e5936760874fa4cf46c86e1ce278a (diff) | |
download | tcl-a9e9c4de3de788a605af9a2d4efa389f32735e21.zip tcl-a9e9c4de3de788a605af9a2d4efa389f32735e21.tar.gz tcl-a9e9c4de3de788a605af9a2d4efa389f32735e21.tar.bz2 |
* generic/tclPort.h: Added include of tcl.h since it defines
various Windows macros that are needed before deciding which
platform porting file to use.
Diffstat (limited to 'generic/tclPort.h')
-rw-r--r-- | generic/tclPort.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tclPort.h b/generic/tclPort.h index 5c7c486..70a7312 100644 --- a/generic/tclPort.h +++ b/generic/tclPort.h @@ -10,12 +10,14 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclPort.h,v 1.3 1999/04/16 00:46:52 stanton Exp $ + * RCS: @(#) $Id: tclPort.h,v 1.4 1999/04/23 01:57:12 stanton Exp $ */ #ifndef _TCLPORT #define _TCLPORT +#include <tcl.h> + #if defined(__WIN32__) # include "../win/tclWinPort.h" #else |