diff options
author | das <das@noemail.net> | 2004-11-12 20:27:28 (GMT) |
---|---|---|
committer | das <das@noemail.net> | 2004-11-12 20:27:28 (GMT) |
commit | 2ff23135887c5220a1d2f8df0781feafb618b09e (patch) | |
tree | a820ddeceb34a1b306987774ae74052dcdded800 /generic/tcl.h | |
parent | 078c43d265acfcae8b67fe4a09b69682ee6ff609 (diff) | |
download | tcl-2ff23135887c5220a1d2f8df0781feafb618b09e.zip tcl-2ff23135887c5220a1d2f8df0781feafb618b09e.tar.gz tcl-2ff23135887c5220a1d2f8df0781feafb618b09e.tar.bz2 |
* generic/tcl.h:
* generic/tclInt.h:
* unix/Makefile.in: include tclConfig.h from tcl.h and install it
as a public header. Normalized compiler include path order to
-I${BUILD_DIR} -I${UNIX_DIR} -I${GENERIC_DIR}.
* unix/dltest/Makefile.in: add ${BUILD_DIR}/.. to include path
to pick up tclConfig.h.
FossilOrigin-Name: c706d886d742c8c70561ae5e6bc9c02bca5af0c1
Diffstat (limited to 'generic/tcl.h')
-rw-r--r-- | generic/tcl.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index e29ee48..71ef242 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -13,12 +13,16 @@ * 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.187 2004/11/03 19:13:33 davygrvy Exp $ + * RCS: @(#) $Id: tcl.h,v 1.188 2004/11/12 20:27:28 das Exp $ */ #ifndef _TCL #define _TCL +#ifdef HAVE_CONFIG_H +#include "tclConfig.h" +#endif + /* * The following defines are used to indicate the various release levels. */ |