# HG changeset patch # User John D # Date 1499872463 14400 # Node ID 1d38ed8aafbda6e3412c86ea7e775bd272126328 # Parent d9eba31bd16b969a78329bca9f6a3002aa5c5a1b wxwidgets: update to v3.0.3 * dist-files.mk: remove wxwidgets-1-c++11-related-fixes.patch * src/wxwidgets.mk: update version, checksum * src/wxwidgets-1-c++11-related-fixes.patch: removed file diff -r d9eba31bd16b -r 1d38ed8aafbd dist-files.mk --- a/dist-files.mk Tue Jul 11 15:07:23 2017 -0400 +++ b/dist-files.mk Wed Jul 12 11:14:23 2017 -0400 @@ -695,7 +695,6 @@ winpcap.mk \ wt-1-fixes.patch \ wt.mk \ - wxwidgets-1-c++11-related-fixes.patch \ wxwidgets-test.cpp \ wxwidgets.mk \ x11.mk \ diff -r d9eba31bd16b -r 1d38ed8aafbd src/wxwidgets-1-c++11-related-fixes.patch --- a/src/wxwidgets-1-c++11-related-fixes.patch Tue Jul 11 15:07:23 2017 -0400 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,27 +0,0 @@ -From: Boris Pek -Date: Thu, 05 May 2016 19:11:19 +0300 -Subject: [PATCH] fix build with GCC >= 6.x - -diff --git a/src/stc/scintilla/src/Editor.cxx b/src/stc/scintilla/src/Editor.cxx ---- a/src/stc/scintilla/src/Editor.cxx -+++ b/src/stc/scintilla/src/Editor.cxx -@@ -10,6 +10,7 @@ - #include - #include - #include -+#include - - #include - #include -@@ -5841,9 +5842,9 @@ - } - - static bool Close(Point pt1, Point pt2) { -- if (abs(pt1.x - pt2.x) > 3) -+ if (fabs(pt1.x - pt2.x) > 3) - return false; -- if (abs(pt1.y - pt2.y) > 3) -+ if (fabs(pt1.y - pt2.y) > 3) - return false; - return true; - } diff -r d9eba31bd16b -r 1d38ed8aafbd src/wxwidgets.mk --- a/src/wxwidgets.mk Tue Jul 11 15:07:23 2017 -0400 +++ b/src/wxwidgets.mk Wed Jul 12 11:14:23 2017 -0400 @@ -3,11 +3,11 @@ PKG := wxwidgets $(PKG)_IGNORE := -$(PKG)_VERSION := 3.0.2 -$(PKG)_CHECKSUM := 6461eab4428c0a8b9e41781b8787510484dea800 +$(PKG)_VERSION := 3.0.3 +$(PKG)_CHECKSUM := 3525306c926e208d9b0272aaa9c091b8c7264e5b $(PKG)_SUBDIR := wxWidgets-$($(PKG)_VERSION) $(PKG)_FILE := $($(PKG)_SUBDIR).tar.bz2 -$(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/wxwindows/$($(PKG)_VERSION)/$($(PKG)_FILE) +$(PKG)_URL := https://github.com/wxWidgets/wxWidgets/releases/download/v$($(PKG)_VERSION)/$($(PKG)_FILE) $(PKG)_DEPS := libiconv libpng jpeg tiff sdl zlib expat define $(PKG)_UPDATE