summaryrefslogtreecommitdiffstats
path: root/win/tclConfig.sh.in
diff options
context:
space:
mode:
authormdejong <mdejong>2001-11-08 03:07:19 (GMT)
committermdejong <mdejong>2001-11-08 03:07:19 (GMT)
commit24f42ede14ad162733c4f5d19806f269d217f64a (patch)
tree35af1aeff3227d5a80b4c9b0ae32d4fd2daf8fe8 /win/tclConfig.sh.in
parentceb8d5b3ec54ffd8414acdfa8b799b6897e8b7d5 (diff)
downloadtcl-24f42ede14ad162733c4f5d19806f269d217f64a.zip
tcl-24f42ede14ad162733c4f5d19806f269d217f64a.tar.gz
tcl-24f42ede14ad162733c4f5d19806f269d217f64a.tar.bz2
Define TCL_INCLUDE_SPEC in tclConfig.sh. It should be
included by extensions that need to find Tcl include headers in the install location. The user can override the include install dir with --includedir so we need to record this information for extensions. [Tcl bug 421835] * unix/configure: Regen. * unix/configure.in: Define TCL_INCLUDE_SPEC. * unix/tclConfig.sh.in: Define TCL_INCLUDE_SPEC. * win/configure: Regen. * win/configure.in: Define TCL_INCLUDE_SPEC. * win/tclConfig.sh.in: Define TCL_INCLUDE_SPEC.
Diffstat (limited to 'win/tclConfig.sh.in')
-rw-r--r--win/tclConfig.sh.in6
1 files changed, 5 insertions, 1 deletions
diff --git a/win/tclConfig.sh.in b/win/tclConfig.sh.in
index b9a40dc..991fc09 100644
--- a/win/tclConfig.sh.in
+++ b/win/tclConfig.sh.in
@@ -9,7 +9,7 @@
#
# The information in this file is specific to a single platform.
#
-# RCS: @(#) $Id: tclConfig.sh.in,v 1.7 2001/04/25 22:01:24 mdejong Exp $
+# RCS: @(#) $Id: tclConfig.sh.in,v 1.8 2001/11/08 03:07:22 mdejong Exp $
TCL_DLL_FILE="@TCL_DLL_FILE@"
@@ -118,6 +118,10 @@ TCL_BUILD_LIB_SPEC='@TCL_BUILD_LIB_SPEC@'
# installed directory.
TCL_LIB_SPEC='@TCL_LIB_SPEC@'
+# String to pass to the compiler so that an extension can
+# find installed Tcl headers.
+TCL_INCLUDE_SPEC='@TCL_INCLUDE_SPEC@'
+
# Indicates whether a version numbers should be used in -l switches
# ("ok" means it's safe to use switches like -ltcl7.5; "nodots" means
# use switches like -ltcl75). SunOS and FreeBSD require "nodots", for