From owner-svn-ports-all@FreeBSD.ORG Fri Nov 23 09:20:27 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9C8F3B80; Fri, 23 Nov 2012 09:20:27 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 677158FC16; Fri, 23 Nov 2012 09:20:27 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qAN9KRiO080567; Fri, 23 Nov 2012 09:20:27 GMT (envelope-from kevlo@svn.freebsd.org) Received: (from kevlo@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qAN9KR5K080565; Fri, 23 Nov 2012 09:20:27 GMT (envelope-from kevlo@svn.freebsd.org) Message-Id: <201211230920.qAN9KR5K080565@svn.freebsd.org> From: Kevin Lo Date: Fri, 23 Nov 2012 09:20:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r307675 - head/deskutils/kdepimlibs4/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Nov 2012 09:20:27 -0000 Author: kevlo Date: Fri Nov 23 09:20:27 2012 New Revision: 307675 URL: http://svnweb.freebsd.org/changeset/ports/307675 Log: Fix build with clang. Feature safe: yes Added: head/deskutils/kdepimlibs4/files/patch-kcal__vcalformat.cpp (contents, props changed) head/deskutils/kdepimlibs4/files/patch-kcalcore__vcalformat.cpp (contents, props changed) Added: head/deskutils/kdepimlibs4/files/patch-kcal__vcalformat.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/kdepimlibs4/files/patch-kcal__vcalformat.cpp Fri Nov 23 09:20:27 2012 (r307675) @@ -0,0 +1,12 @@ +--- kcal/vcalformat.cpp.orig 2012-11-23 17:05:03.000000000 +0800 ++++ kcal/vcalformat.cpp 2012-11-23 17:05:32.000000000 +0800 +@@ -1029,8 +1029,7 @@ + if ( ( vo = isAPropertyOf( vevent, VCRRuleProp ) ) != 0 ) { + QString tmpStr = ( s = fakeCString( vObjectUStringZValue( vo ) ) ); + deleteStr( s ); +- tmpStr.simplified(); +- tmpStr = tmpStr.toUpper(); ++ tmpStr = tmpStr.simplified().toUpper(); + + // first, read the type of the recurrence + int typelen = 1; Added: head/deskutils/kdepimlibs4/files/patch-kcalcore__vcalformat.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/kdepimlibs4/files/patch-kcalcore__vcalformat.cpp Fri Nov 23 09:20:27 2012 (r307675) @@ -0,0 +1,22 @@ +--- kcalcore/vcalformat.cpp.orig 2012-11-23 17:03:35.000000000 +0800 ++++ kcalcore/vcalformat.cpp 2012-11-23 17:04:14.000000000 +0800 +@@ -1190,8 +1190,7 @@ + if ( ( vo = isAPropertyOf( vtodo, VCRRuleProp ) ) != 0 ) { + QString tmpStr = ( s = fakeCString( vObjectUStringZValue( vo ) ) ); + deleteStr( s ); +- tmpStr.simplified(); +- tmpStr = tmpStr.toUpper(); ++ tmpStr = tmpStr.simplified().toUpper(); + // first, read the type of the recurrence + int typelen = 1; + uint type = Recurrence::rNone; +@@ -1674,8 +1673,7 @@ + if ( ( vo = isAPropertyOf( vevent, VCRRuleProp ) ) != 0 ) { + QString tmpStr = ( s = fakeCString( vObjectUStringZValue( vo ) ) ); + deleteStr( s ); +- tmpStr.simplified(); +- tmpStr = tmpStr.toUpper(); ++ tmpStr = tmpStr.simplified().toUpper(); + // first, read the type of the recurrence + int typelen = 1; + uint type = Recurrence::rNone;