diff options
author | mo <mo> | 2000-07-27 22:52:42 (GMT) |
---|---|---|
committer | mo <mo> | 2000-07-27 22:52:42 (GMT) |
commit | 7808cd1f6b397be03639f6b58b08fe75b0e3539a (patch) | |
tree | 4ffb71d18afc4981ef4db23edb31e8b53f01ba98 | |
parent | 6c8536cfeb0e26f8b5792f423389c6614c98dffd (diff) | |
download | tk-7808cd1f6b397be03639f6b58b08fe75b0e3539a.zip tk-7808cd1f6b397be03639f6b58b08fe75b0e3539a.tar.gz tk-7808cd1f6b397be03639f6b58b08fe75b0e3539a.tar.bz2 |
* win/configure.in: TCL_STUB_LIB_FLAG and
TK_STUB_LIB_FLAG should not include ${TCL_DBGX}
in win/tkConfig.sh, fix that.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | win/configure.in | 6 |
2 files changed, 9 insertions, 3 deletions
@@ -1,3 +1,9 @@ +2000-07-27 Mo DeJong <mdejong@redhat.com> + + * win/configure.in: TCL_STUB_LIB_FLAG and + TK_STUB_LIB_FLAG should not include ${TCL_DBGX} + in win/tkConfig.sh, fix that. + 2000-07-25 Joe English <jenglish@flightlab.com> * doc: CanvPsY.3, ConfigWidg.3, CrtImgType.3, CrtItemType.3, FontId.3, GetFont.3, canvas.n, font.n, options.n, text.n: diff --git a/win/configure.in b/win/configure.in index 57681f6..ef80902 100644 --- a/win/configure.in +++ b/win/configure.in @@ -2,7 +2,7 @@ # generate the file "configure", which is run during Tk installation # to configure the system for the local environment. # -# RCS: @(#) $Id: configure.in,v 1.20 2000/07/21 16:27:35 mo Exp $ +# RCS: @(#) $Id: configure.in,v 1.21 2000/07/27 22:52:43 mo Exp $ AC_INIT(../generic/tk.h) @@ -112,14 +112,14 @@ eval "TK_STUB_LIB_FILE=${LIBPREFIX}tkstub${VER}${LIBSUFFIX}" # I left out the other vars that also need to get defined here. # we also need to double check about including DBGX in lib names # and spaces in file or directory names for the eval -eval "TK_STUB_LIB_FLAG=\"-ltkstub${VER}${LIBSUFFIX}\"" +eval "TK_STUB_LIB_FLAG=\"-ltkstub${VER}${TCL_DBGX}\"" eval "TK_BUILD_STUB_LIB_SPEC=\"-L`pwd` ${TK_STUB_LIB_FLAG}\"" eval "TCL_DLL_FILE=\"tcl$VER${DLLSUFFIX}\"" eval "TCL_LIB_FILE=\"${LIBPREFIX}tcl$VER${LIBSUFFIX}\"" eval "TCL_STUB_LIB_FILE=\"${LIBPREFIX}tclstub${VER}${LIBSUFFIX}\"" -eval "TCL_STUB_LIB_FLAG=\"-ltclstub${VER}${LIBSUFFIX}\"" +eval "TCL_STUB_LIB_FLAG=\"-ltclstub${VER}${TCL_DBGX}\"" eval "TCL_BUILD_STUB_LIB_SPEC=\"-L`pwd` ${TCL_STUB_LIB_FLAG}\"" eval "DLLSUFFIX=${DLLSUFFIX}" |