head 1.2; access; symbols pkgsrc-2017Q2:1.1.0.20 pkgsrc-2017Q2-base:1.1 pkgsrc-2017Q1:1.1.0.18 pkgsrc-2017Q1-base:1.1 pkgsrc-2016Q4:1.1.0.16 pkgsrc-2016Q4-base:1.1 pkgsrc-2016Q3:1.1.0.14 pkgsrc-2016Q3-base:1.1 pkgsrc-2016Q2:1.1.0.12 pkgsrc-2016Q2-base:1.1 pkgsrc-2016Q1:1.1.0.10 pkgsrc-2016Q1-base:1.1 pkgsrc-2015Q4:1.1.0.8 pkgsrc-2015Q4-base:1.1 pkgsrc-2015Q3:1.1.0.6 pkgsrc-2015Q3-base:1.1 pkgsrc-2015Q2:1.1.0.4 pkgsrc-2015Q2-base:1.1 pkgsrc-2015Q1:1.1.0.2 pkgsrc-2015Q1-base:1.1; locks; strict; comment @// @; 1.2 date 2017.09.11.20.22.53; author wiz; state dead; branches; next 1.1; commitid RUqOkzdb4b07PO6A; 1.1 date 2015.01.17.11.16.59; author wiedi; state Exp; branches; next ; commitid kDrwzqm8D4GQUm6y; desc @@ 1.2 log @Updated wxGTK30 to 3.0.3. Carry forward libtool patch from 3.0.2, with LDFLAGS changes included. This is a bug fix release with no significant new features compared to the previous 3.0.x releases and compatible with them at both the API and the ABI level (i.e. all applications linked against earlier 3.0.x DLLs or shared libraries will continue to work when using 3.0.3 libraries). The full list of changes in this release is available at https://raw.githubusercontent.com/wxWidgets/wxWidgets/v3.0.3/docs/changes.txt (starting from the line 583, or search for "3.0.3" in this file), here are some selected ones: * In all ports: - Support requestion modern (3.x+) OpenGL version in wxGLCanvas. - Fix using wxHTTP and wxFTP from worker thread. * In wxGTK: - Support for Gstreamer 1.0 in wxMediaCtrl, in addition to obsolete 0.x. - Several fatal bug fixes for GTK+ 3. @ text @$NetBSD: patch-src_stc_scintilla_src_Editor.cxx,v 1.1 2015/01/17 11:16:59 wiedi Exp $ Avoid ambiguity on SunOS --- src/stc/scintilla/src/Editor.cxx.orig 2014-10-06 21:33:44.000000000 +0000 +++ src/stc/scintilla/src/Editor.cxx @@@@ -5841,9 +5841,9 @@@@ void Editor::GoToLine(int lineNo) { } static bool Close(Point pt1, Point pt2) { - if (abs(pt1.x - pt2.x) > 3) + if (abs((long)(pt1.x - pt2.x)) > 3) return false; - if (abs(pt1.y - pt2.y) > 3) + if (abs((long)(pt1.y - pt2.y)) > 3) return false; return true; } @ 1.1 log @Fix build on SunOS by adding patch for math function ambiguity and disabling xlocale detection on SunOS for now, as there is enough support to fool detection on illumos but not enough to finish the build yet. @ text @d1 1 a1 1 $NetBSD$ @