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.in | |
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.in')
-rw-r--r-- | win/configure.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/win/configure.in b/win/configure.in index 7ab1973..4d81f5b 100644 --- a/win/configure.in +++ b/win/configure.in @@ -3,7 +3,7 @@ # generate the file "configure", which is run during Tcl installation # to configure the system for the local environment. # -# RCS: @(#) $Id: configure.in,v 1.44 2001/11/07 23:37:52 mdejong Exp $ +# RCS: @(#) $Id: configure.in,v 1.45 2001/11/08 03:07:21 mdejong Exp $ AC_INIT(../generic/tcl.h) @@ -157,6 +157,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}" @@ -199,6 +203,7 @@ AC_SUBST(TCL_STUB_LIB_FILE) AC_SUBST(TCL_STUB_LIB_FLAG) AC_SUBST(TCL_STUB_LIB_SPEC) AC_SUBST(TCL_STUB_LIB_PATH) +AC_SUBST(TCL_INCLUDE_SPEC) AC_SUBST(TCL_BUILD_STUB_LIB_SPEC) AC_SUBST(TCL_BUILD_STUB_LIB_PATH) AC_SUBST(TCL_DLL_FILE) |