We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6079c0e commit 0dc8017Copy full SHA for 0dc8017
src/libhashkit/CMakeLists.txt
@@ -17,7 +17,6 @@ set(libhashkit_sources
17
murmur3.cc
18
murmur3_api.cc
19
one_at_a_time.cc
20
- rijndael.cc
21
str_algorithm.cc
22
strerror.cc
23
string.cc
@@ -53,6 +52,10 @@ if(ENABLE_OPENSSL_CRYPTO)
53
52
endif()
54
55
+if (NOT OPENSSL_CRYPTO_LIBRARY)
56
+ set (libhashkit_sources ${libhashkit_sources} rijndael.cc)
57
+endif()
58
+
59
configure_file(hashkitcon.h.in hashkitcon.h @ONLY)
60
61
install(TARGETS libhashkit EXPORT libhashkit-targets
0 commit comments