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 D3AC215838C for ; Mon, 29 Jan 2024 09:33:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 27DBCE29C9; Mon, 29 Jan 2024 09:33:58 +0000 (UTC) Received: from smtp.gentoo.org (mail.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 127DFE29C9 for ; Mon, 29 Jan 2024 09:33:58 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 56701343392 for ; Mon, 29 Jan 2024 09:33:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EB17C358 for ; Mon, 29 Jan 2024 09:33:54 +0000 (UTC) From: "Matthew Smith" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Smith" Message-ID: <1706520828.5dcd918b96cdb59f183ba8ae23821c69ad7833f0.matthew@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/mimalloc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/mimalloc/mimalloc-2.1.2.ebuild X-VCS-Directories: dev-libs/mimalloc/ X-VCS-Committer: matthew X-VCS-Committer-Name: Matthew Smith X-VCS-Revision: 5dcd918b96cdb59f183ba8ae23821c69ad7833f0 X-VCS-Branch: master Date: Mon, 29 Jan 2024 09:33:54 +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: 9714ea59-f7b7-4877-bb51-d09d31d7bd58 X-Archives-Hash: 10450e4aafc664a1c3cc32262373f2fc commit: 5dcd918b96cdb59f183ba8ae23821c69ad7833f0 Author: Matthew Smith gentoo org> AuthorDate: Mon Jan 29 09:31:23 2024 +0000 Commit: Matthew Smith gentoo org> CommitDate: Mon Jan 29 09:33:48 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5dcd918b dev-libs/mimalloc: append -latomic if required Closes: https://bugs.gentoo.org/923177 Suggested-by: Matoro Mahri matoro.tk> Signed-off-by: Matthew Smith gentoo.org> dev-libs/mimalloc/mimalloc-2.1.2.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dev-libs/mimalloc/mimalloc-2.1.2.ebuild b/dev-libs/mimalloc/mimalloc-2.1.2.ebuild index dcc758662a5f..82790836bf71 100644 --- a/dev-libs/mimalloc/mimalloc-2.1.2.ebuild +++ b/dev-libs/mimalloc/mimalloc-2.1.2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit cmake-multilib +inherit cmake-multilib flag-o-matic DESCRIPTION="A compact general purpose allocator with excellent performance" HOMEPAGE="https://github.com/microsoft/mimalloc" @@ -18,6 +18,9 @@ RESTRICT="!test? ( test )" DEPEND="valgrind? ( dev-debug/valgrind )" src_configure() { + # Bug #923177 + append-atomic-flags + local mycmakeargs=( -DMI_SECURE=$(usex hardened) -DMI_INSTALL_TOPLEVEL=ON