diff options
author | Mehmet Suslu <msuslu@gmail.com> | 2022-03-31 18:37:32 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-31 18:37:32 +0300 |
commit | 7ac2008888c1373cc59d948c9aa97a14e8001f77 (patch) | |
tree | afc5acab3224539a6e556f759d08b54f2a9b1637 /contrib | |
parent | 16ba8b55887ab1524ca8d9095f6a14726c91ed72 (diff) | |
download | rspamd-7ac2008888c1373cc59d948c9aa97a14e8001f77.tar.gz rspamd-7ac2008888c1373cc59d948c9aa97a14e8001f77.zip |
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.
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/fastutf8/platform_config.h.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/fastutf8/platform_config.h.in b/contrib/fastutf8/platform_config.h.in index 301234e1e..621d99e2c 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 |