diff options
author | andreas_kupries <akupries@shaw.ca> | 2006-09-22 19:01:49 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2006-09-22 19:01:49 (GMT) |
commit | 8a50ab5e2c3c18775c254efd2651bd27320b3dab (patch) | |
tree | 2fa75cca07b8dfcac761bcc630e361386a0e8f29 /win/Makefile.in | |
parent | 199732899ee8edcd64fef50ed92b9937bb8d8a12 (diff) | |
download | tk-8a50ab5e2c3c18775c254efd2651bd27320b3dab.zip tk-8a50ab5e2c3c18775c254efd2651bd27320b3dab.tar.gz tk-8a50ab5e2c3c18775c254efd2651bd27320b3dab.tar.bz2 |
* generic/tkConsole.c: TIP #268 update regarding registered package
* generic/tkMain.c: version, now using full patchlevel instead of
* generic/tkWindow.c: major.minor
* library/tk.tcl:
* unix/configure:
* unix/Makefile.in:
* unix/tcl.m4:
* win/configure:
* win/Makefile.in:
* win/makefile.vc:
* win/rules.vc:
* win/tcl.m4:
Diffstat (limited to 'win/Makefile.in')
-rw-r--r-- | win/Makefile.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index d27d759..af501d9 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -4,9 +4,10 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.59.2.4 2006/03/02 21:07:30 hobbs Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.59.2.5 2006/09/22 19:01:52 andreas_kupries Exp $ TCLVERSION = @TCL_VERSION@ +TCLPATCHL = @TCL_PATCH_LEVEL@ VERSION = @TK_VERSION@ #---------------------------------------------------------------- @@ -426,8 +427,8 @@ install-binaries: binaries @$(RM) $(PKG_INDEX); @(\ echo "if {[package vcompare [package provide Tcl]\ - $(TCLVERSION)] != 0} { return }";\ - echo "package ifneeded Tk $(VERSION)\ + $(TCLVERSION)$(TCLPATCHL)] != 0} { return }";\ + echo "package ifneeded Tk $(VERSION)$(TCLPATCHL)\ [list load [file join \$$dir .. .. bin $(TK_DLL_FILE)] Tk]";\ ) > $(PKG_INDEX); @for i in tkConfig.sh $(TK_LIB_FILE) $(TK_STUB_LIB_FILE); \ |