diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-01-20 14:39:30 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-01-20 14:39:30 (GMT) |
commit | 6e3ba2148a09004ebaeeb3c9349c027aff88b15b (patch) | |
tree | f3b12d2d826c6e25cca57d001a750db48b3c5fca /win/Makefile.in | |
parent | d7c85201a2c700cb43554d1e6871a09e98d01dd2 (diff) | |
download | tk-6e3ba2148a09004ebaeeb3c9349c027aff88b15b.zip tk-6e3ba2148a09004ebaeeb3c9349c027aff88b15b.tar.gz tk-6e3ba2148a09004ebaeeb3c9349c027aff88b15b.tar.bz2 |
Compile with -Wwrite-strings, as does Tcl. In pkgIndex files, allow "8.6-" to match, for better interoperability with "novem"
Diffstat (limited to 'win/Makefile.in')
-rw-r--r-- | win/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index 0b1acd7..80d616b 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -487,7 +487,7 @@ install-binaries: binaries @echo "Creating package index $(PKG_INDEX)"; @$(RM) $(PKG_INDEX); @(\ - echo "if {[catch {package present Tcl 8.6.0}]} return";\ + echo "if {[catch {package present Tcl 8.6-}]} return";\ echo "if {(\$$::tcl_platform(platform) eq \"unix\") && ([info exists ::env(DISPLAY)]";\ echo " || ([info exists ::argv] && (\"-display\" in \$$::argv)))} {";\ echo " package ifneeded Tk $(VERSION)$(PATCH_LEVEL) [list load [file normalize [file join \$$dir .. .. bin libtk$(VERSION).dll]] Tk]";\ |