summaryrefslogtreecommitdiff
path: root/mail/rspamd/files
diff options
context:
space:
mode:
authorYasuhiro Kimura <yasu@FreeBSD.org>2023-03-18 02:58:02 +0900
committerYasuhiro Kimura <yasu@FreeBSD.org>2023-03-18 10:47:32 +0900
commit27e618aefe3e2732ca8214a28dfde0887cfb18f4 (patch)
tree15bc6fa35229437822c84018a845ed16fde1ff6b /mail/rspamd/files
parentgraphics/mesa-devel: update to 23.0.b.3215 (diff)
mail/rspamd: Update to 3.5
ChangeLog: https://github.com/rspamd/rspamd/releases/tag/3.5 PR: 270288 Approved by: maintainer
Diffstat (limited to 'mail/rspamd/files')
-rw-r--r--mail/rspamd/files/patch-src_libserver_hyperscan_tools.cxx21
-rw-r--r--mail/rspamd/files/patch-src_libutil_cxx_file_util.cxx22
2 files changed, 0 insertions, 43 deletions
diff --git a/mail/rspamd/files/patch-src_libserver_hyperscan_tools.cxx b/mail/rspamd/files/patch-src_libserver_hyperscan_tools.cxx
deleted file mode 100644
index 72eb1173ae88..000000000000
--- a/mail/rspamd/files/patch-src_libserver_hyperscan_tools.cxx
+++ /dev/null
@@ -1,21 +0,0 @@
-diff --git a/src/libserver/hyperscan_tools.cxx b/src/libserver/hyperscan_tools.cxx
-index 6187208a9..96366067d 100644
---- src/libserver/hyperscan_tools.cxx
-+++ src/libserver/hyperscan_tools.cxx
-@@ -306,7 +306,15 @@ auto load_cached_hs_file(const char *fname, std::int64_t offset = 0) -> tl::expe
- msg_debug_hyperscan_lambda("multipattern: create new database in %s; %Hz size",
- tmpfile_pattern.data(), unserialized_size);
- void *buf;
-- posix_memalign(&buf, 16, unserialized_size);
-+#ifdef HAVE_GETPAGESIZE
-+ auto page_size = getpagesize();
-+#else
-+ auto page_size = sysconf(_SC_PAGESIZE);
-+#endif
-+ if (page_size == -1) {
-+ page_size = 4096;
-+ }
-+ posix_memalign(&buf, page_size, unserialized_size);
- if (buf == nullptr) {
- return tl::make_unexpected(error {"Cannot allocate memory", errno, error_category::CRITICAL });
- }
diff --git a/mail/rspamd/files/patch-src_libutil_cxx_file_util.cxx b/mail/rspamd/files/patch-src_libutil_cxx_file_util.cxx
deleted file mode 100644
index f7461da0c82b..000000000000
--- a/mail/rspamd/files/patch-src_libutil_cxx_file_util.cxx
+++ /dev/null
@@ -1,22 +0,0 @@
-diff --git a/src/libutil/cxx/file_util.cxx b/src/libutil/cxx/file_util.cxx
-index e3b3a2605..4536fa97b 100644
---- src/libutil/cxx/file_util.cxx
-+++ src/libutil/cxx/file_util.cxx
-@@ -198,7 +198,7 @@ auto raii_mmaped_file::mmap_shared(raii_file &&file,
- }
- /* Update stat on file to ensure it is up-to-date */
- file.update_stat();
-- map = mmap(nullptr, file.get_size() - offset, flags, MAP_SHARED, file.get_fd(), offset);
-+ map = mmap(nullptr, (std::size_t)(file.get_size() - offset), flags, MAP_SHARED, file.get_fd(), offset);
-
- if (map == MAP_FAILED) {
- return tl::make_unexpected(error { fmt::format("cannot mmap file {}: {}",
-@@ -206,7 +206,7 @@ auto raii_mmaped_file::mmap_shared(raii_file &&file,
-
- }
-
-- return raii_mmaped_file{std::move(file), map, file.get_size() - offset};
-+ return raii_mmaped_file{std::move(file), map, (std::size_t)(file.get_size() - offset)};
- }
-
- auto raii_mmaped_file::mmap_shared(const char *fname, int open_flags,