From b284a3168fa91a038925d2ecf5e4791011ea5e7d Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Mon, 18 Nov 2019 10:15:03 +0000 Subject: gentoo resync : 18.11.2019 --- .../files/haveged-1.9.8c-threads_build_fix.patch | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 sys-apps/haveged/files/haveged-1.9.8c-threads_build_fix.patch (limited to 'sys-apps/haveged/files') 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 new file mode 100644 index 000000000000..fb88a8b51212 --- /dev/null +++ b/sys-apps/haveged/files/haveged-1.9.8c-threads_build_fix.patch @@ -0,0 +1,36 @@ +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 + -- cgit v1.2.3