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 5EFEF158087 for ; Thu, 20 Jan 2022 05:47:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A175C2BC002; Thu, 20 Jan 2022 05:47:57 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 1A2DF2BC002 for ; Thu, 20 Jan 2022 05:47:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 D4A5D3432D9 for ; Thu, 20 Jan 2022 05:47:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 03C7E275 for ; Thu, 20 Jan 2022 05:47:54 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1642657672.a60a60ee51bfe612f8bb18497cc84bbf01becaba.robbat2@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/haveged/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/haveged/files/haveged-1.9.8c-threads_build_fix.patch X-VCS-Directories: sys-apps/haveged/files/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: a60a60ee51bfe612f8bb18497cc84bbf01becaba X-VCS-Branch: master Date: Thu, 20 Jan 2022 05:47: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: f97f4747-e828-4368-9e4b-f532fdd89d78 X-Archives-Hash: ebc424f96a7d4d928e271357d271816e commit: a60a60ee51bfe612f8bb18497cc84bbf01becaba Author: Michael Mair-Keimberger levelnine at> AuthorDate: Fri Jan 14 18:06:41 2022 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Thu Jan 20 05:47:52 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a60a60ee sys-apps/haveged: remove unused patch Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger levelnine.at> (cherry picked from commit cd5d796e8e30dffde7fb059e6cc5867a4139ef37) Signed-off-by: Robin H. Johnson gentoo.org> Closes: https://github.com/gentoo/gentoo/pull/23797 .../files/haveged-1.9.8c-threads_build_fix.patch | 36 ---------------------- 1 file changed, 36 deletions(-) diff --git a/sys-apps/haveged/files/haveged-1.9.8c-threads_build_fix.patch b/sys-apps/haveged/files/haveged-1.9.8c-threads_build_fix.patch deleted file mode 100644 index fb88a8b51212..000000000000 --- a/sys-apps/haveged/files/haveged-1.9.8c-threads_build_fix.patch +++ /dev/null @@ -1,36 +0,0 @@ -From cb1f0653c45d9c4a9a855119c85a1d4bfcc9b3b2 Mon Sep 17 00:00:00 2001 -From: Lars Wendler -Date: Thu, 14 Nov 2019 16:15:00 +0100 -Subject: [PATCH] build: Fix compilation with --enable-threads -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Previously failed with: - -havegetune.c:190:12: error: ‘BUILD_THREAD’ undeclared (first use in this function); did you mean ‘BUILD_THREADS’? - 190 | *bp++ = BUILD_THREAD; - | ^~~~~~~~~~~~ - | BUILD_THREADS - -Signed-off-by: Lars Wendler ---- - src/havegetune.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/havegetune.c b/src/havegetune.c -index de39c53..6f14476 100644 ---- a/src/havegetune.c -+++ b/src/havegetune.c -@@ -187,7 +187,7 @@ void havege_tune( /* RETURN: none */ - *bp++ = BUILD_CPUID; - #endif - #if NUMBER_CORES>1 -- *bp++ = BUILD_THREAD; -+ *bp++ = BUILD_THREADS; - #endif - #ifdef ONLINE_TESTS_ENABLE - *bp++ = BUILD_OLT; --- -2.24.0 -