diff options
author | mdejong <mdejong> | 2001-11-08 03:07:19 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2001-11-08 03:07:19 (GMT) |
commit | 24f42ede14ad162733c4f5d19806f269d217f64a (patch) | |
tree | 35af1aeff3227d5a80b4c9b0ae32d4fd2daf8fe8 /win/configure | |
parent | ceb8d5b3ec54ffd8414acdfa8b799b6897e8b7d5 (diff) | |
download | tcl-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/configure')
-rwxr-xr-x | win/configure | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/win/configure b/win/configure index ff44518..5512e52 100755 --- a/win/configure +++ b/win/configure @@ -1553,6 +1553,10 @@ eval "TCL_STUB_LIB_SPEC=\"-L${exec_prefix}/lib ${TCL_STUB_LIB_FLAG}\"" eval "TCL_BUILD_STUB_LIB_PATH=\"`pwd`/${TCL_STUB_LIB_FILE}\"" eval "TCL_STUB_LIB_PATH=\"${exec_prefix}/lib/${TCL_STUB_LIB_FILE}\"" +# Install time header dir can be set via --includedir +eval "TCL_INCLUDE_SPEC=\"-I${includedir}\"" + + eval "DLLSUFFIX=${DLLSUFFIX}" eval "LIBPREFIX=${LIBPREFIX}" eval "LIBSUFFIX=${LIBSUFFIX}" @@ -1606,6 +1610,7 @@ fi + # win/tcl.m4 doesn't set (CFLAGS) @@ -1841,6 +1846,7 @@ s%@TCL_STUB_LIB_FILE@%$TCL_STUB_LIB_FILE%g s%@TCL_STUB_LIB_FLAG@%$TCL_STUB_LIB_FLAG%g s%@TCL_STUB_LIB_SPEC@%$TCL_STUB_LIB_SPEC%g s%@TCL_STUB_LIB_PATH@%$TCL_STUB_LIB_PATH%g +s%@TCL_INCLUDE_SPEC@%$TCL_INCLUDE_SPEC%g s%@TCL_BUILD_STUB_LIB_SPEC@%$TCL_BUILD_STUB_LIB_SPEC%g s%@TCL_BUILD_STUB_LIB_PATH@%$TCL_BUILD_STUB_LIB_PATH%g s%@TCL_DLL_FILE@%$TCL_DLL_FILE%g |