diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-12-26 05:48:09 +0100 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-12-26 05:48:09 +0100 |
commit | 7a46ebd00d73767ed6d0a2b4e346aae5edf481ad (patch) | |
tree | 1baca01b6943d560e6cc03005c60abc8ce5518de /src/crypto/mac | |
parent | 6709236699a6ddac0d8ab6b3ffc2ba5faf8315c5 (diff) | |
download | fastd-7a46ebd00d73767ed6d0a2b4e346aae5edf481ad.tar fastd-7a46ebd00d73767ed6d0a2b4e346aae5edf481ad.zip |
Only fail due to missing pclmul support if the pclmulqdq GHASH implementation is actually enabled
Diffstat (limited to 'src/crypto/mac')
-rw-r--r-- | src/crypto/mac/ghash/pclmulqdq/CMakeLists.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/crypto/mac/ghash/pclmulqdq/CMakeLists.txt b/src/crypto/mac/ghash/pclmulqdq/CMakeLists.txt index 59bc09d..f96f680 100644 --- a/src/crypto/mac/ghash/pclmulqdq/CMakeLists.txt +++ b/src/crypto/mac/ghash/pclmulqdq/CMakeLists.txt @@ -1,11 +1,11 @@ if(ARCH_X86 OR ARCH_X86_64) - if(NOT HAVE_PCLMUL) - message(FATAL_ERROR "WITH_MAC_GHASH_PCLMULQDQ enabled, but there is no compiler support for -mpclmul") - endif(NOT HAVE_PCLMUL) - fastd_mac_impl(ghash pclmulqdq ghash_pclmulqdq.c ghash_pclmulqdq_impl.c ) fastd_mac_impl_compile_flags(ghash pclmulqdq ghash_pclmulqdq_impl.c "-mssse3 -mpclmul") + + if(WITH_MAC_GHASH_PCLMULQDQ AND NOT HAVE_PCLMUL) + message(FATAL_ERROR "WITH_MAC_GHASH_PCLMULQDQ enabled, but there is no compiler support for -mpclmul") + endif(WITH_MAC_GHASH_PCLMULQDQ AND NOT HAVE_PCLMUL) endif(ARCH_X86 OR ARCH_X86_64) |