From c4392c40e052b1bbb0a20797d0fc67d7eca47206 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Mon, 29 Jan 2018 17:05:25 -0500 Subject: [PATCH] Fix misaligned SSE2 allocations on FreeBSD (GH #562) This may have something to do with https://github.com/monero-project/kovri/pull/788 --- config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.h b/config.h index d320a247..c36fe05f 100644 --- a/config.h +++ b/config.h @@ -697,7 +697,7 @@ NAMESPACE_END #define CRYPTOPP_APPLE_MALLOC_AVAILABLE #elif defined(_AIX) #define CRYPTOPP_POSIX_MEMALIGN_AVAILABLE -#elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) +#elif defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) #define CRYPTOPP_MALLOC_ALIGNMENT_IS_16 #elif defined(__linux__) || defined(__sun__) || defined(__CYGWIN__) #define CRYPTOPP_MEMALIGN_AVAILABLE