From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1563039-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 23879158089 for <garchives@archives.gentoo.org>; Sun, 15 Oct 2023 20:01:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 512A72BC014; Sun, 15 Oct 2023 20:01:02 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 34F072BC014 for <gentoo-commits@lists.gentoo.org>; Sun, 15 Oct 2023 20:01:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 66669335CB7 for <gentoo-commits@lists.gentoo.org>; Sun, 15 Oct 2023 20:01:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B287395E for <gentoo-commits@lists.gentoo.org>; Sun, 15 Oct 2023 20:00:59 +0000 (UTC) From: "Andreas Sturmlechner" <asturm@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" <asturm@gentoo.org> Message-ID: <1697400037.8138d7bc836b35dd42df44f829dcd518f03a4e64.asturm@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: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 8138d7bc836b35dd42df44f829dcd518f03a4e64 X-VCS-Branch: master Date: Sun, 15 Oct 2023 20:00:59 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 61f730f0-8ff1-42a3-bb55-560e0c4de3b8 X-Archives-Hash: 9a92232bcc060dc9b62348d70dfeea96 commit: 8138d7bc836b35dd42df44f829dcd518f03a4e64 Author: Alfred Wingate <parona <AT> protonmail <DOT> com> AuthorDate: Wed Oct 11 12:30:44 2023 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Sun Oct 15 20:00:37 2023 +0000 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=8138d7bc qt5-build.eclass: workaround undefined qt_version_tag (LLD 17) Bug: https://bugreports.qt.io/browse/QTBUG-111514 Bug: https://bugs.gentoo.org/915203 Signed-off-by: Alfred Wingate <parona <AT> protonmail.com> Closes: https://github.com/gentoo/gentoo/pull/33302 Signed-off-by: Sam James <sam <AT> gentoo.org> Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> eclass/qt5-build.eclass | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index 5e23d793..e9cb2f50 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -231,6 +231,12 @@ qt5-build_src_configure() { qt5_tools_configure fi + # Workaround for bug #915203 + # Upstream: https://bugreports.qt.io/browse/QTBUG-111514 + if [[ ${PN} != qtcore ]]; then + append-ldflags -Wl,--undefined-version + fi + qt5_foreach_target_subdir qt5_qmake }