svn commit: r329132 - head/multimedia/subtitlecomposer-kde4/files

John Marino marino at FreeBSD.org
Thu Oct 3 00:30:44 UTC 2013


Author: marino
Date: Thu Oct  3 00:30:43 2013
New Revision: 329132
URL: http://svnweb.freebsd.org/changeset/ports/329132

Log:
  multimedia/subtitlecomposer: Fix c++ for gcc 4.5+
  
  Direct calls of call constructors are not allowed since gcc 4.5.
  
  Approved by:	portmgr (bapt, implicit)

Added:
  head/multimedia/subtitlecomposer-kde4/files/patch-src_core_sstring.cpp   (contents, props changed)

Added: head/multimedia/subtitlecomposer-kde4/files/patch-src_core_sstring.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/multimedia/subtitlecomposer-kde4/files/patch-src_core_sstring.cpp	Thu Oct  3 00:30:43 2013	(r329132)
@@ -0,0 +1,11 @@
+--- src/core/sstring.cpp.orig	2009-05-24 21:56:30.000000000 +0000
++++ src/core/sstring.cpp
+@@ -1112,7 +1112,7 @@ SStringList::SStringList( const SString&
+ 	append( str );
+ }
+ 
+-SStringList::SStringList( const SStringList::SStringList& list ):
++SStringList::SStringList( const SStringList& list ):
+ 	QList<SString>( list )
+ {
+ }


More information about the svn-ports-all mailing list