diff options
author | Russell Standish <hpcoder@hpcoders.com.au> | 2020-04-07 12:28:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-07 12:28:59 (GMT) |
commit | 68ffa63e61a9e76134934ab56556a531e4d56485 (patch) | |
tree | 774c76072e24cbdfce987396fc11ef13e206e9fa /plugins/tcl.tk | |
parent | e72f9414fd0dd9790bb3ed87dec67b2170318ffe (diff) | |
download | mxe-68ffa63e61a9e76134934ab56556a531e4d56485.zip mxe-68ffa63e61a9e76134934ab56556a531e4d56485.tar.gz mxe-68ffa63e61a9e76134934ab56556a531e4d56485.tar.bz2 |
Make Tk version consistent with Tcl (#2446)
* Make Tk version consistent with Tcl
* Remove stray space
Diffstat (limited to 'plugins/tcl.tk')
-rw-r--r-- | plugins/tcl.tk/tk.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/tcl.tk/tk.mk b/plugins/tcl.tk/tk.mk index 634a996..9072198 100644 --- a/plugins/tcl.tk/tk.mk +++ b/plugins/tcl.tk/tk.mk @@ -4,8 +4,8 @@ PKG := tk $(PKG)_WEBSITE := https://tcl.tk/ $(PKG)_OWNER := https://github.com/highperformancecoder $(PKG)_IGNORE := -$(PKG)_VERSION := 8.6.4 -$(PKG)_CHECKSUM := 08f99df85e5dc9c4271762163c6aabb962c8b297dc5c4c1af8bdd05fc2dd26c1 +$(PKG)_VERSION := 8.6.9 +$(PKG)_CHECKSUM := d3f9161e8ba0f107fe8d4df1f6d3a14c30cc3512dfc12a795daa367a27660dac $(PKG)_SUBDIR := tk$($(PKG)_VERSION) $(PKG)_FILE := tk$($(PKG)_VERSION)-src.tar.gz $(PKG)_URL := https://$(SOURCEFORGE_MIRROR)/project/tcl/Tcl/$($(PKG)_VERSION)/$($(PKG)_FILE) @@ -26,6 +26,6 @@ define $(PKG)_BUILD --with-tcl='$(PREFIX)/$(TARGET)/lib' \ $(if $(findstring x86_64,$(TARGET)), --enable-64bit) \ CFLAGS='-D__MINGW_EXCPT_DEFINE_PSDK' - $(MAKE) -C '$(BUILD_DIR)' -j '$(JOBS)' + $(MAKE) -C '$(BUILD_DIR)' -j '$(JOBS)' LIBS='-lmincore -lnetapi32 -lz -ltclstub86 -limm32 -lcomctl32 -luuid -lole32' $(MAKE) -C '$(BUILD_DIR)' -j 1 install endef |