summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authordas <das>2004-11-12 20:27:28 (GMT)
committerdas <das>2004-11-12 20:27:28 (GMT)
commitfcf4caf8ae7e9763a64b2290db20aeedd438b99e (patch)
treea820ddeceb34a1b306987774ae74052dcdded800 /generic
parent15db0cfaf8db72f2cd37a9379f11ccd9efb3ae7d (diff)
downloadtcl-fcf4caf8ae7e9763a64b2290db20aeedd438b99e.zip
tcl-fcf4caf8ae7e9763a64b2290db20aeedd438b99e.tar.gz
tcl-fcf4caf8ae7e9763a64b2290db20aeedd438b99e.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.
Diffstat (limited to 'generic')
-rw-r--r--generic/tcl.h6
-rw-r--r--generic/tclInt.h6
2 files changed, 6 insertions, 6 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.
*/
diff --git a/generic/tclInt.h b/generic/tclInt.h
index fa128aa..c2019a3 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -12,16 +12,12 @@
* 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.196 2004/11/12 19:16:52 dgp Exp $
+ * RCS: @(#) $Id: tclInt.h,v 1.197 2004/11/12 20:27:28 das Exp $
*/
#ifndef _TCLINT
#define _TCLINT
-#ifdef HAVE_CONFIG_H
-#include "tclConfig.h"
-#endif
-
/*
* Common include files needed by most of the Tcl source files are
* included here, so that system-dependent personalizations for the