svn commit: r473961 - head/www/sams2/files

Adriaan de Groot adridg at FreeBSD.org
Thu Jul 5 10:31:37 UTC 2018


Author: adridg
Date: Thu Jul  5 10:31:35 2018
New Revision: 473961
URL: https://svnweb.freebsd.org/changeset/ports/473961

Log:
  Fix build with Clang6.
  
  	error: invalid operands to binary expression ('std::ostream' (aka
  	'basic_ostream<char>') and 'std::stringstream' (aka
  	'basic_stringstream<char>'))
  
  Reported by:	linimon

Added:
  head/www/sams2/files/patch-src_datefilter.cpp   (contents, props changed)
  head/www/sams2/files/patch-src_net.cpp   (contents, props changed)

Added: head/www/sams2/files/patch-src_datefilter.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/sams2/files/patch-src_datefilter.cpp	Thu Jul  5 10:31:35 2018	(r473961)
@@ -0,0 +1,29 @@
+Fix build with Clang6: stringstream doesn't have a viable overload
+for ostream::operator<< . It does with Clang5. Use str() explicitly.
+
+--- src/datefilter.cpp.orig	2018-07-04 11:23:09 UTC
++++ src/datefilter.cpp
+@@ -130,9 +130,10 @@ string DateFilter::getStartDateAsString () const
+   strftime (strbuf, sizeof (strbuf), "%Y-%m-%d", localtime (&_date_start));
+   s << strbuf;
+ 
+-  DEBUG (DEBUG8, "[" << this << "->" << __FUNCTION__ << "] = " << s);
++  string r = s.str ();
++  DEBUG (DEBUG8, "[" << this << "->" << __FUNCTION__ << "] = " << r);
+ 
+-  return s.str ();
++  return r;
+ }
+ 
+ string DateFilter::getEndDateAsString () const
+@@ -143,7 +144,8 @@ string DateFilter::getEndDateAsString () const
+   strftime (strbuf, sizeof (strbuf), "%Y-%m-%d", localtime (&_date_end));
+   s << strbuf;
+ 
+-  DEBUG (DEBUG8, "[" << this << "->" << __FUNCTION__ << "] = " << s);
++  string r = s.str ();
++  DEBUG (DEBUG8, "[" << this << "->" << __FUNCTION__ << "] = " << r);
+ 
+-  return s.str ();
++  return r;
+ }

Added: head/www/sams2/files/patch-src_net.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/sams2/files/patch-src_net.cpp	Thu Jul  5 10:31:35 2018	(r473961)
@@ -0,0 +1,18 @@
+Fix build with Clang6: stringstream doesn't have a viable overload
+for ostream::operator<< . It does with Clang5. Use str() explicitly.
+
+--- src/net.cpp.orig	2018-07-04 11:24:43 UTC
++++ src/net.cpp
+@@ -156,9 +156,10 @@ string Net::asString ()
+ 
+   s << _net.c_str ();
+ 
+-  DEBUG (DEBUG8, "[" << this << "->" << __FUNCTION__ << "] = " << s);
++  string r = s.str ();
++  DEBUG (DEBUG8, "[" << this << "->" << __FUNCTION__ << "] = " << r);
+ 
+-  return s.str ();
++  return r;
+ }
+ 
+ 


More information about the svn-ports-head mailing list