From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 22 22:50:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7CB451065670 for ; Wed, 22 Jun 2011 22:50:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4C1D08FC22 for ; Wed, 22 Jun 2011 22:50:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p5MMoBKj005708 for ; Wed, 22 Jun 2011 22:50:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p5MMoBfM005707; Wed, 22 Jun 2011 22:50:11 GMT (envelope-from gnats) Resent-Date: Wed, 22 Jun 2011 22:50:11 GMT Resent-Message-Id: <201106222250.p5MMoBfM005707@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Niclas Zeising Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 68A80106564A for ; Wed, 22 Jun 2011 22:46:55 +0000 (UTC) (envelope-from zeising@daemonic.se) Received: from mail.lysator.liu.se (mail.lysator.liu.se [130.236.254.3]) by mx1.freebsd.org (Postfix) with ESMTP id 13EBB8FC25 for ; Wed, 22 Jun 2011 22:46:54 +0000 (UTC) Received: from mail.lysator.liu.se (localhost [127.0.0.1]) by mail.lysator.liu.se (Postfix) with ESMTP id 019DE40002 for ; Thu, 23 Jun 2011 00:46:33 +0200 (CEST) Received: by mail.lysator.liu.se (Postfix, from userid 1004) id EB35C40005; Thu, 23 Jun 2011 00:46:32 +0200 (CEST) Received: from mx.daemonic.se (h-90-99.A163.priv.bahnhof.se [79.136.90.99]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.lysator.liu.se (Postfix) with ESMTPSA id A73D640002 for ; Thu, 23 Jun 2011 00:46:32 +0200 (CEST) Received: from mail.daemonic.se (mail.daemonic.se [IPv6:2001:470:dca9:0:1::4]) by mx.daemonic.se (Postfix) with ESMTPS id 745E4119C04 for ; Thu, 23 Jun 2011 00:46:32 +0200 (CEST) Received: from vincent.daemonic.se (login.daemonic.se [IPv6:2001:470:dca9:0:1::10]) by mail.daemonic.se (Postfix) with ESMTPS id 517A712B0A0 for ; Thu, 23 Jun 2011 00:46:32 +0200 (CEST) Received: (from zeising@localhost) by vincent.daemonic.se (8.14.4/8.14.4/Submit) id p5MMkWbl009342; Thu, 23 Jun 2011 00:46:32 +0200 (CEST) (envelope-from zeising) Message-Id: <201106222246.p5MMkWbl009342@vincent.daemonic.se> Date: Thu, 23 Jun 2011 00:46:32 +0200 (CEST) From: Niclas Zeising To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/158182: [PATCH] fix devel/pwlib to build with clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Niclas Zeising List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Jun 2011 22:50:11 -0000 >Number: 158182 >Category: ports >Synopsis: [PATCH] fix devel/pwlib to build with clang >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jun 22 22:50:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Niclas Zeising >Release: FreeBSD 8.2-RELEASE amd64 >Organization: >Environment: System: FreeBSD vincent.daemonic.se 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Wed Apr 20 17:22:47 CEST 2011 root@vincent.daemonic.se:/usr/obj/usr/src/sys/VINCENT amd64 >Description: devel/pwlib doesn't build with clang. >How-To-Repeat: >Fix: Attached patch makes devel/pwlib build with clang. --- devel.pwlib.clangfix.patch begins here --- Index: files/patch-include-ptlib-array.h =================================================================== RCS file: files/patch-include-ptlib-array.h diff -N files/patch-include-ptlib-array.h --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-include-ptlib-array.h 22 Jun 2011 22:44:30 -0000 @@ -0,0 +1,11 @@ +--- include/ptlib/array.h.orig 2011-06-23 00:28:13.000000000 +0200 ++++ include/ptlib/array.h 2011-06-23 00:28:34.000000000 +0200 +@@ -644,7 +644,7 @@ + T t; + stream >> t; + if (!stream.fail()) +- SetAt(index, t); ++ this->SetAt(index, t); + } + }; + --- devel.pwlib.clangfix.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: