From owner-svn-ports-head@freebsd.org Sun Jun 5 19:11:58 2016 Return-Path: Delivered-To: svn-ports-head@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 7865AB6B196; Sun, 5 Jun 2016 19:11:58 +0000 (UTC) (envelope-from sbruno@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 482FF1171; Sun, 5 Jun 2016 19:11:58 +0000 (UTC) (envelope-from sbruno@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u55JBvSi036352; Sun, 5 Jun 2016 19:11:57 GMT (envelope-from sbruno@FreeBSD.org) Received: (from sbruno@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u55JBvGe036350; Sun, 5 Jun 2016 19:11:57 GMT (envelope-from sbruno@FreeBSD.org) Message-Id: <201606051911.u55JBvGe036350@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sbruno set sender to sbruno@FreeBSD.org using -f From: Sean Bruno Date: Sun, 5 Jun 2016 19:11:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r416418 - in head/www/webkit2-gtk3: . 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-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Jun 2016 19:11:58 -0000 Author: sbruno Date: Sun Jun 5 19:11:57 2016 New Revision: 416418 URL: https://svnweb.freebsd.org/changeset/ports/416418 Log: Add explicit cast to float to repair build with libc++ 3.8.0 PR: 209686 Submitted by: dim Added: head/www/webkit2-gtk3/files/patch-Source_WebCore_rendering_shapes_BoxShape.cpp (contents, props changed) Modified: head/www/webkit2-gtk3/Makefile Modified: head/www/webkit2-gtk3/Makefile ============================================================================== --- head/www/webkit2-gtk3/Makefile Sun Jun 5 18:59:49 2016 (r416417) +++ head/www/webkit2-gtk3/Makefile Sun Jun 5 19:11:57 2016 (r416418) @@ -3,7 +3,7 @@ PORTNAME= webkit PORTVERSION= 2.8.5 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www MASTER_SITES= http://webkitgtk.org/releases/ PKGNAMESUFFIX= 2-gtk3 Added: head/www/webkit2-gtk3/files/patch-Source_WebCore_rendering_shapes_BoxShape.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/webkit2-gtk3/files/patch-Source_WebCore_rendering_shapes_BoxShape.cpp Sun Jun 5 19:11:57 2016 (r416418) @@ -0,0 +1,11 @@ +--- Source/WebCore/rendering/shapes/BoxShape.cpp.orig 2015-07-22 12:37:57 UTC ++++ Source/WebCore/rendering/shapes/BoxShape.cpp +@@ -43,7 +43,7 @@ static inline LayoutUnit adjustRadiusFor + + LayoutUnit ratio = radius / margin; + if (ratio < 1) +- return radius + (margin * (1 + pow(ratio - 1, 3))); ++ return radius + (margin * (1 + pow(static_cast(ratio) - 1, 3))); + + return radius + margin; + }