Bug 188658 - [PATCH] devel/commoncpp: fix build on HEAD
Summary: [PATCH] devel/commoncpp: fix build on HEAD
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Jose Alonso Cardenas Marquez
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-04-15 14:30 UTC by Steve Wills
Modified: 2014-05-22 09:10 UTC (History)
1 user (show)

See Also:


Attachments
commoncpp-1.8.1.patch (1.33 KB, patch)
2014-04-15 14:30 UTC, Steve Wills
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Steve Wills freebsd_committer freebsd_triage 2014-04-15 14:30:00 UTC
- 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)
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2014-04-15 14:30:03 UTC
Responsible Changed
From-To: freebsd-ports-bugs->acm

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2014-05-22 09:02:56 UTC
Author: miwi
Date: Thu May 22 08:02:51 2014
New Revision: 354799
URL: http://svnweb.freebsd.org/changeset/ports/354799
QAT: https://qat.redports.org/buildarchive/r354799/

Log:
  - Fix build
  
  PR:		188658
  Submitted by:	swills
  Approved by:	maintainer timeout

Added:
  head/devel/commoncpp/files/patch-inc__cc++__string.h   (contents, props changed)

Added: head/devel/commoncpp/files/patch-inc__cc++__string.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/commoncpp/files/patch-inc__cc++__string.h	Thu May 22 08:02:51 2014	(r354799)
@@ -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 <dyfet@ostel.com>
+  * @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++
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Martin Wilke freebsd_committer freebsd_triage 2014-05-22 09:03:00 UTC
State Changed
From-To: open->closed

Committed. Thanks!