diff options
author | dgp <dgp@users.sourceforge.net> | 2004-11-12 20:20:20 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2004-11-12 20:20:20 (GMT) |
commit | 15db0cfaf8db72f2cd37a9379f11ccd9efb3ae7d (patch) | |
tree | 9ff4968256f4ea379c1be93d08c266ec070d0e86 /generic/tclPort.h | |
parent | 76bdda652755702f1fe6c33d2cabfbd403ec9bfa (diff) | |
download | tcl-15db0cfaf8db72f2cd37a9379f11ccd9efb3ae7d.zip tcl-15db0cfaf8db72f2cd37a9379f11ccd9efb3ae7d.tar.gz tcl-15db0cfaf8db72f2cd37a9379f11ccd9efb3ae7d.tar.bz2 |
* unix/Makefile.in: Be sure -I{BUILD_DIR} comes first so that
we #include the correct tclConfig.h file for the correct build.
* generic/tclPort.h: Make sure tclConfig.h is #include'd so that
its configuration values can guide portability support.
Diffstat (limited to 'generic/tclPort.h')
-rw-r--r-- | generic/tclPort.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/generic/tclPort.h b/generic/tclPort.h index 5cea76b..e4c0d40 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.9 2004/04/24 05:59:18 das Exp $ + * RCS: @(#) $Id: tclPort.h,v 1.10 2004/11/12 20:20:24 dgp Exp $ */ #ifndef _TCLPORT #define _TCLPORT #include "tcl.h" +#ifdef HAVE_CONFIG_H +#include "tclConfig.h" +#endif #if defined(__WIN32__) # include "tclWinPort.h" |