From owner-svn-ports-all@freebsd.org Mon May 23 16:25:22 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 44F8CB46467; Mon, 23 May 2016 16:25:22 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 174A51E2F; Mon, 23 May 2016 16:25:22 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4NGPLkT091545; Mon, 23 May 2016 16:25:21 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4NGPLxR091544; Mon, 23 May 2016 16:25:21 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201605231625.u4NGPLxR091544@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Mon, 23 May 2016 16:25:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415729 - head/x11-toolkits/wxgtk30/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2016 16:25:22 -0000 Author: dim (src committer) Date: Mon May 23 16:25:21 2016 New Revision: 415729 URL: https://svnweb.freebsd.org/changeset/ports/415729 Log: During the exp-run in bug 208158, it was found that x11-toolkits/wxgtk30 gives errors with libc++ 3.8.0: ./src/stc/scintilla/src/Editor.cxx:5844:6: error: call to 'abs' is ambiguous if (abs(pt1.x - pt2.x) > 3) ^~~ This is because pt1.x and pt2.x are float values, but is not included, and abs() for float values comes from that header. Fix it by including . Approved by: portmaster@bsdforge.com (maintainer) Approved by: vlad-fbsd@acheronmedia.com (maintainer) PR: 209694 MFH: 2016Q2 Added: head/x11-toolkits/wxgtk30/files/patch-src_stc_scintilla_src_Editor.cxx (contents, props changed) Added: head/x11-toolkits/wxgtk30/files/patch-src_stc_scintilla_src_Editor.cxx ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-toolkits/wxgtk30/files/patch-src_stc_scintilla_src_Editor.cxx Mon May 23 16:25:21 2016 (r415729) @@ -0,0 +1,10 @@ +--- src/stc/scintilla/src/Editor.cxx.orig 2014-10-06 21:33:44 UTC ++++ src/stc/scintilla/src/Editor.cxx +@@ -16,6 +16,7 @@ + #include + #include + #include ++#include + + #include "Platform.h" +