svn commit: r376627 - head/finance/openhbci/files

Antoine Brodin antoine at FreeBSD.org
Fri Jan 9 17:55:11 UTC 2015


Author: antoine
Date: Fri Jan  9 17:55:09 2015
New Revision: 376627
URL: https://svnweb.freebsd.org/changeset/ports/376627
QAT: https://qat.redports.org/buildarchive/r376627/

Log:
  Allow building with libc++ r224926
  
  PR:		ports/196625
  Submitted by:	dim@

Added:
  head/finance/openhbci/files/patch-src_openhbci_core_bank.cpp   (contents, props changed)
  head/finance/openhbci/files/patch-src_openhbci_core_bank.h   (contents, props changed)

Added: head/finance/openhbci/files/patch-src_openhbci_core_bank.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/finance/openhbci/files/patch-src_openhbci_core_bank.cpp	Fri Jan  9 17:55:09 2015	(r376627)
@@ -0,0 +1,11 @@
+--- src/openhbci/core/bank.cpp.orig	2003-04-25 01:45:54 UTC
++++ src/openhbci/core/bank.cpp
+@@ -39,7 +39,7 @@ instituteMessage::instituteMessage()
+ instituteMessage::~instituteMessage(){
+ }
+ 
+-const bool instituteMessage::operator==(const instituteMessage &msg) {
++bool instituteMessage::operator==(const instituteMessage &msg) const {
+     return (_date == msg._date &&
+ 			0 == _time.compare(msg._time) &&
+ 			_subject == msg._subject &&

Added: head/finance/openhbci/files/patch-src_openhbci_core_bank.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/finance/openhbci/files/patch-src_openhbci_core_bank.h	Fri Jan  9 17:55:09 2015	(r376627)
@@ -0,0 +1,11 @@
+--- src/openhbci/core/bank.h.orig	2003-06-13 21:50:00 UTC
++++ src/openhbci/core/bank.h
+@@ -97,7 +97,7 @@ public:
+     instituteMessage();
+     ~instituteMessage();
+ 
+-	const bool operator==(const instituteMessage &msg);
++    bool operator==(const instituteMessage &msg) const;
+ 
+     /** Returns the Date of arrival. */
+     const Date &date() const { return _date;};


More information about the svn-ports-all mailing list