From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 446BC13829B for ; Mon, 30 May 2016 00:40:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0D82721C06A; Mon, 30 May 2016 00:40:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AA68321C06A for ; Mon, 30 May 2016 00:40:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 57BE8340B27 for ; Mon, 30 May 2016 00:40:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 21AF9AA2 for ; Mon, 30 May 2016 00:40:22 +0000 (UTC) From: "Davide Pesavento" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Davide Pesavento" Message-ID: <1464568798.cb6166dae65059db60215c4ff61e5547df862931.pesa@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: eclass/ X-VCS-Repository: proj/qt X-VCS-Files: eclass/qt5-build.eclass X-VCS-Directories: eclass/ X-VCS-Committer: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: cb6166dae65059db60215c4ff61e5547df862931 X-VCS-Branch: master Date: Mon, 30 May 2016 00:40:22 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 84dc9be5-1e9a-41dc-bffd-3e2d082189a6 X-Archives-Hash: 0e65f8d719a775b94e205f4ea2d758c2 commit: cb6166dae65059db60215c4ff61e5547df862931 Author: Davide Pesavento gentoo org> AuthorDate: Mon May 30 00:23:00 2016 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Mon May 30 00:39:58 2016 +0000 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=cb6166da qt5-build.eclass: make sure we enable the QML debugging support The code comment was incorrect, the flag *is* used, at least in Qt 5.6 and later. It obviously applies only to qtdeclarative, but for some reason the flag can only be toggled from qtbase's configure... meh. We don't allow turning this functionality off via a USE flag because it would be a mess to implement properly, and its meaning would be rather obscure for most users. It's a small amount of code anyway, and it doesn't require any additional dependencies. The configure already enabled -qml-debug by default, so this commit effectively doesn't change anything in practice. eclass/qt5-build.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index 9732058..349e551 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -547,8 +547,8 @@ qt5_base_configure() { -no-sql-db2 -no-sql-ibase -no-sql-mysql -no-sql-oci -no-sql-odbc -no-sql-psql -no-sql-sqlite -no-sql-sqlite2 -no-sql-tds - # obsolete flag, does nothing - #-qml-debug + # ensure the QML debugging support (qmltooling) is built in qtdeclarative + $([[ ${QT5_MINOR_VERSION} -ge 6 ]] && echo -qml-debug) # MIPS DSP instruction set extensions $(is-flagq -mno-dsp && echo -no-mips_dsp)