From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Apr 15 13:30:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A625BCFC for ; Tue, 15 Apr 2014 13:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 818941A3D for ; Tue, 15 Apr 2014 13:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3FDU0NP069281 for ; Tue, 15 Apr 2014 13:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3FDU0FM069279; Tue, 15 Apr 2014 13:30:00 GMT (envelope-from gnats) Resent-Date: Tue, 15 Apr 2014 13:30:00 GMT Resent-Message-Id: <201404151330.s3FDU0FM069279@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, Steve Wills Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 63E41B9E for ; Tue, 15 Apr 2014 13:28:13 +0000 (UTC) Received: from mouf.net (mouf.net [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mouf.net", Issuer "mouf.net" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 0C5931A25 for ; Tue, 15 Apr 2014 13:28:12 +0000 (UTC) Received: from meatwad.mouf.net (cpe-107-015-170-205.nc.res.rr.com [107.15.170.205]) by mouf.net (8.14.5/8.14.5) with ESMTP id s3FDRuDO047468 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 15 Apr 2014 13:28:01 GMT (envelope-from swills@meatwad.mouf.net) Received: (from swills@localhost) by meatwad.mouf.net (8.14.8/8.14.5/Submit) id s3FDRrYG052042; Tue, 15 Apr 2014 13:27:53 GMT (envelope-from swills) Message-Id: <201404151327.s3FDRrYG052042@meatwad.mouf.net> Date: Tue, 15 Apr 2014 13:27:53 GMT From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/188658: [PATCH] devel/commoncpp: fix build on HEAD Cc: acm@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Apr 2014 13:30:00 -0000 >Number: 188658 >Category: ports >Synopsis: [PATCH] devel/commoncpp: fix build on HEAD >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Apr 15 13:30:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 11.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 11.0-CURRENT FreeBSD 11.0-CURRENT #3 r264228M: Sun Apr 13 03:26:28 UTC >Description: - Fix build on HEAD (patch by gahr@, i'm just passing it along) Port maintainer (acm@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 1.00.2014.03.23 (mode: change, diff: SVN) >How-To-Repeat: >Fix: --- commoncpp-1.8.1.patch begins here --- Index: files/patch-inc__cc++__string.h =================================================================== --- files/patch-inc__cc++__string.h (revision 0) +++ files/patch-inc__cc++__string.h (working copy) @@ -0,0 +1,21 @@ +--- inc/cc++/string.h.orig 2014-04-15 15:05:21.000000000 +0200 ++++ inc/cc++/string.h 2014-04-15 15:10:46.000000000 +0200 +@@ -74,6 +74,9 @@ + * @author David Sugar + * @short Generic string class. + */ ++class String; ++std::istream &getline(std::istream &is, String &str, char delim = '\n', size_t size = 0); ++ + class __EXPORT String + { + protected: +@@ -731,7 +734,7 @@ + * @param delim deliminator to use. + * @param size optional size limitor. + */ +- friend __EXPORT std::istream &getline(std::istream &is, String &str, char delim = '\n', size_t size = 0); ++ friend __EXPORT std::istream &getline(std::istream &is, String &str, char delim, size_t size); + + /** + * Stream the content of our string variable directly to a C++ Property changes on: files/patch-inc__cc++__string.h ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property --- commoncpp-1.8.1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: