From: Mehmet Suslu Date: Thu, 31 Mar 2022 15:37:32 +0000 (+0300) Subject: fix missing preprocessor macro for SSSE3 X-Git-Tag: 3.3~265^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7ac2008888c1373cc59d948c9aa97a14e8001f77;p=thirdparty%2Frspamd.git fix missing preprocessor macro for SSSE3 HAVE_SSSE3 preprocessor macro is not transferred to the fastutf8 library by CMake configuration. Thus, the function rspamd_fast_utf8_validate_sse41 is missing in rspamd-server shared library. --- diff --git a/contrib/fastutf8/platform_config.h.in b/contrib/fastutf8/platform_config.h.in index 301234e1e0..621d99e2cc 100644 --- a/contrib/fastutf8/platform_config.h.in +++ b/contrib/fastutf8/platform_config.h.in @@ -7,6 +7,7 @@ #ifdef __x86_64__ #cmakedefine HAVE_AVX2 1 #cmakedefine HAVE_SSE41 1 +#cmakedefine HAVE_SSSE3 1 #endif -#endif \ No newline at end of file +#endif