commit: 9577efa11cca713f2e5b7e80ab07cb37365fba19 Author: Matthew Smith <matthew <AT> gentoo <DOT> org> AuthorDate: Sat Mar 23 07:32:32 2024 +0000 Commit: Matthew Smith <matthew <AT> gentoo <DOT> org> CommitDate: Sat Mar 23 07:36:25 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9577efa1
net-misc/xmrig: stop filtering -D_FORTIFY_SOURCE=3 Fixed upstream in commit f6c50b5393. Bug: https://bugs.gentoo.org/913420 Signed-off-by: Matthew Smith <matthew <AT> gentoo.org> net-misc/xmrig/xmrig-9999.ebuild | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/net-misc/xmrig/xmrig-9999.ebuild b/net-misc/xmrig/xmrig-9999.ebuild index a36872e00718..2061563b6ac5 100644 --- a/net-misc/xmrig/xmrig-9999.ebuild +++ b/net-misc/xmrig/xmrig-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit cmake flag-o-matic systemd toolchain-funcs +inherit cmake systemd DESCRIPTION="RandomX, CryptoNight, KawPow, AstroBWT, and Argon2 CPU/GPU miner" HOMEPAGE="https://xmrig.com https://github.com/xmrig/xmrig" @@ -44,13 +44,6 @@ src_prepare() { } src_configure() { - # JIT broken with FORTIFY_SOURCE=3 - # Bug #913420 - if tc-enables-fortify-source; then - filter-flags -D_FORTIFY_SOURCE=3 - append-cppflags -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 - fi - local mycmakeargs=( -DWITH_SSE4_1=$(usex cpu_flags_x86_sse4_1) -DWITH_HWLOC=$(usex hwloc)
