mail-filter/rspamd: fix build with USE=-hyperscan

This fix backports upstream patch
ccb45df90d

Closes: https://bugs.gentoo.org/946676
Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
This commit is contained in:
Petr Vaněk
2024-12-19 17:41:41 +01:00
parent 004dc105bf
commit ee616175ee
2 changed files with 30 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
From ccb45df90df60fae36b9438cfb2b0088e590306b Mon Sep 17 00:00:00 2001
From: Vsevolod Stakhov <vsevolod@rspamd.com>
Date: Tue, 17 Dec 2024 13:37:54 +0000
Subject: [PATCH] [Fix] Fix crash on FreeBSD when Rspamd is built without
hyperscan
Upstream-commit: https://github.com/rspamd/rspamd/commit/ccb45df90df60fae36b9438cfb2b0088e590306b
---
src/rspamd.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/rspamd.c b/src/rspamd.c
index 088bfba49c..dafd9aebeb 100644
--- a/src/rspamd.c
+++ b/src/rspamd.c
@@ -56,9 +56,10 @@
#ifdef WITH_HYPERSCAN
#include "libserver/hyperscan_tools.h"
-#include "rspamd_simdutf.h"
#endif
+#include "rspamd_simdutf.h"
+
/* 2 seconds to fork new process in place of dead one */
#define SOFT_FORK_TIME 2

View File

@@ -75,6 +75,9 @@ PATCHES=(
# backward compatibility with <dev-libs/libfmt-11
"${FILESDIR}/${PN}-3.9.0-older-libfmt.patch"
# bug 946676
"${FILESDIR}/${P}-simdutf-hdr.patch"
)
src_prepare() {