diff options
author | mdejong <mdejong> | 2002-01-17 02:46:05 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2002-01-17 02:46:05 (GMT) |
commit | a47d47cbb35ee1acc2ecb44bb6b37631ce05d137 (patch) | |
tree | 24136678bf6ed979d877d636c185a08fae3d5ba7 /unix | |
parent | 5bd1d8e23bddeb03e519a5533f27399104561cc6 (diff) | |
download | tcl-a47d47cbb35ee1acc2ecb44bb6b37631ce05d137.zip tcl-a47d47cbb35ee1acc2ecb44bb6b37631ce05d137.tar.gz tcl-a47d47cbb35ee1acc2ecb44bb6b37631ce05d137.tar.bz2 |
* unix/tcl.m4 (SC_LOAD_TCLCONFIG):
* win/tcl.m4 (SC_LOAD_TCLCONFIG): Subst TCL_DBGX
into TCL_STUB_LIB_FILE and TCL_STUB_LIB_FLAG
variables so that an extension does not need
to subst TCL_DBGX into its makefile. [Tk Bug 504356]
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tcl.m4 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4 index 2b146e7..7b59a80 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -219,12 +219,13 @@ AC_DEFUN(SC_LOAD_TCLCONFIG, [ fi # - # The eval is required to do the TCL_DBGX substitution in the - # TCL_LIB_FILE variable + # eval is required to do the TCL_DBGX substitution # eval TCL_LIB_FILE=${TCL_LIB_FILE} eval TCL_LIB_FLAG=${TCL_LIB_FLAG} + eval TCL_STUB_LIB_FILE=${TCL_STUB_LIB_FILE} + eval TCL_STUB_LIB_FLAG=${TCL_STUB_LIB_FLAG} AC_SUBST(TCL_BIN_DIR) AC_SUBST(TCL_SRC_DIR) |