diff options
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tcl.h | 6 | ||||
-rw-r--r-- | generic/tclInt.h | 5 | ||||
-rw-r--r-- | generic/tclPort.h | 5 |
3 files changed, 9 insertions, 7 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index feeec0a..8f9caba 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -13,16 +13,12 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tcl.h,v 1.190 2004/11/16 03:30:54 das Exp $ + * RCS: @(#) $Id: tcl.h,v 1.191 2004/11/17 17:53:01 dgp Exp $ */ #ifndef _TCL #define _TCL -#ifdef HAVE_TCL_CONFIG_H -#include "tclConfig.h" -#endif - /* * The following defines are used to indicate the various release levels. */ diff --git a/generic/tclInt.h b/generic/tclInt.h index 04254d9..a4ac12e 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclInt.h,v 1.199 2004/11/15 21:47:22 dgp Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.200 2004/11/17 17:53:01 dgp Exp $ */ #ifndef _TCLINT @@ -31,6 +31,9 @@ #ifndef _TCL #include "tcl.h" #endif +#ifdef HAVE_TCL_CONFIG_H +#include "tclConfig.h" +#endif #include <stdio.h> diff --git a/generic/tclPort.h b/generic/tclPort.h index a3d7167..8761cae 100644 --- a/generic/tclPort.h +++ b/generic/tclPort.h @@ -10,13 +10,16 @@ * 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.11 2004/11/12 21:07:31 dgp Exp $ + * RCS: @(#) $Id: tclPort.h,v 1.12 2004/11/17 17:53:01 dgp Exp $ */ #ifndef _TCLPORT #define _TCLPORT #include "tcl.h" +#ifdef HAVE_TCL_CONFIG_H +#include "tclConfig.h" +#endif #if defined(__WIN32__) # include "tclWinPort.h" |