From owner-svn-ports-head@FreeBSD.ORG Thu Nov 13 08:56:09 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 368A8A0; Thu, 13 Nov 2014 08:56:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 089D883D; Thu, 13 Nov 2014 08:56:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sAD8u8XL031180; Thu, 13 Nov 2014 08:56:08 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sAD8u84i031179; Thu, 13 Nov 2014 08:56:08 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201411130856.sAD8u84i031179@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Thu, 13 Nov 2014 08:56:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r372513 - head/x11-toolkits/qt5-quick/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-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Nov 2014 08:56:09 -0000 Author: rakuco Date: Thu Nov 13 08:56:08 2014 New Revision: 372513 URL: https://svnweb.freebsd.org/changeset/ports/372513 QAT: https://qat.redports.org/buildarchive/r372513/ Log: Copy patch from lang/qt5-qml to fix the build with base GCC. Since r372179 we are using the QML headers from the tarball, not the ones installed system-wide by qt5-qml. While this is not a problem and is kind of intended, it also means we need to apply patches like this one to both ports now. Added: head/x11-toolkits/qt5-quick/files/ head/x11-toolkits/qt5-quick/files/patch-git_b84f08c8 - copied unchanged from r372371, head/lang/qt5-qml/files/patch-git_b84f08c8 Copied: head/x11-toolkits/qt5-quick/files/patch-git_b84f08c8 (from r372371, head/lang/qt5-qml/files/patch-git_b84f08c8) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-toolkits/qt5-quick/files/patch-git_b84f08c8 Thu Nov 13 08:56:08 2014 (r372513, copy of r372371, head/lang/qt5-qml/files/patch-git_b84f08c8) @@ -0,0 +1,23 @@ +Fixes the build with base GCC. + +commit b84f08c8b7c91a979bd74840561af2391ef20666 +Author: Lars Knoll +Date: Tue May 6 13:30:31 2014 +0200 + + Fix compiler warning + + Change-Id: I26df4f1b8417c6b075d81eaf118669a4103503e2 + Reviewed-by: Simon Hausmann + +--- src/qml/jsruntime/qv4object_p.h ++++ src/qml/jsruntime/qv4object_p.h +@@ -168,7 +168,8 @@ struct Q_QML_EXPORT Object: Managed { + void defineReadonlyProperty(const StringRef name, ValueRef value); + + void insertMember(const StringRef s, const ValueRef v, PropertyAttributes attributes = Attr_Data) { +- insertMember(s, Property(*v), attributes); ++ Property p(*v); ++ insertMember(s, p, attributes); + } + void insertMember(const StringRef s, const Property &p, PropertyAttributes attributes); +