diff options
author | dgp <dgp@users.sourceforge.net> | 2009-10-15 17:48:50 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2009-10-15 17:48:50 (GMT) |
commit | 8f5b9b9a67aa916120e024a34bfe85e84b7c7444 (patch) | |
tree | 6f8976b95c527baa9bc49f6b6c721f3c4f8e506e /unix/Makefile.in | |
parent | dae8e3e1481db52a1f19e7a2b8f2dc2d13c1f8ac (diff) | |
download | tk-8f5b9b9a67aa916120e024a34bfe85e84b7c7444.zip tk-8f5b9b9a67aa916120e024a34bfe85e84b7c7444.tar.gz tk-8f5b9b9a67aa916120e024a34bfe85e84b7c7444.tar.bz2 |
* generic/tkConsole.c: Relax the runtime version requirements on Tcl
* generic/tkMain.c: so that Tk 8.5.8 can [load] into Tcl 8.6 (and
* generic/tkWindow.c: later 8.*) interps.
* library/tk.tcl
* unix/Makefile.in:
* win/Makefile.in:
* win/makefile.vc:
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index f1ddf0c..06be531 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.143.2.5 2009/04/24 15:40:06 stwo Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.143.2.6 2009/10/15 17:48:50 dgp Exp $ # Current Tk version; used in various names. @@ -710,7 +710,7 @@ install-binaries: $(TK_LIB_FILE) $(TK_STUB_LIB_FILE) $(TK_BUILD_EXP_FILE) wish echo "Creating package index $(PKG_INDEX)"; \ rm -f "$(PKG_INDEX)"; \ (\ - echo "if {[catch {package present Tcl 8.5.0-8.6}]} { return }";\ + echo "if {[catch {package present Tcl 8.5.0}]} { return }";\ relative=`echo | awk '{ORS=" "; split("$(TK_PKG_DIR)",a,"/"); for (f in a) {print ".."}}'`;\ echo "package ifneeded Tk $(MAJOR_VERSION).$(MINOR_VERSION)$(PATCH_LEVEL)\ [list load [file join \$$dir $${relative}$(TK_LIB_FILE)] Tk]";\ |