From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 067A2158041 for ; Wed, 6 Mar 2024 21:51:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2B126E29B0; Wed, 6 Mar 2024 21:51:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 0D3DDE29B0 for ; Wed, 6 Mar 2024 21:51:01 +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 0C2D7340806 for ; Wed, 6 Mar 2024 21:51:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 57FDF119 for ; Wed, 6 Mar 2024 21:50:58 +0000 (UTC) From: "Andreas K. Hüttel" 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 K. Hüttel" Message-ID: <1709761846.5805cc6a36fae4888673210de5f8e33b3cdb5001.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/lttng-tools/lttng-tools-2.13.9.ebuild X-VCS-Directories: dev-util/lttng-tools/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: 5805cc6a36fae4888673210de5f8e33b3cdb5001 X-VCS-Branch: master Date: Wed, 6 Mar 2024 21:50:58 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: aaa0cd7e-8f32-4902-ad49-0109be5aa065 X-Archives-Hash: bab85ad33078067f68c04fe4b6713b38 commit: 5805cc6a36fae4888673210de5f8e33b3cdb5001 Author: Andreas K. Hüttel gentoo org> AuthorDate: Wed Mar 6 21:50:12 2024 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Wed Mar 6 21:50:46 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5805cc6a dev-util/lttng-tools: Apply musl-1.2.4 largefile workaround Bug: https://bugs.gentoo.org/906928 Signed-off-by: Andreas K. Hüttel gentoo.org> dev-util/lttng-tools/lttng-tools-2.13.9.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dev-util/lttng-tools/lttng-tools-2.13.9.ebuild b/dev-util/lttng-tools/lttng-tools-2.13.9.ebuild index 1edf4a57fd84..9375115c5205 100644 --- a/dev-util/lttng-tools/lttng-tools-2.13.9.ebuild +++ b/dev-util/lttng-tools/lttng-tools-2.13.9.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 +inherit flag-o-matic + # Please bump the following packages together: # dev-util/lttng-modules # dev-util/lttng-tools @@ -36,6 +38,9 @@ QA_CONFIG_IMPL_DECL_SKIP=( ) src_configure() { + # bug 906928 + use elibc_musl && append-cppflags -D_LARGEFILE64_SOURCE + econf $(usex ust "" --without-lttng-ust) }