libhashkit/aes: make using openssl configurable
[awesomized/libmemcached] / src / libhashkit / aes.h
index e021c5f1dec7ad1fc045d8ce3b0ae6cf07dcdeab..243d501fef02049488bef501c0c14cbb56adf80c 100644 (file)
@@ -15,7 +15,7 @@
 
 #pragma once
 
-#ifdef WITH_OPENSSL
+#ifdef HAVE_OPENSSL_CRYPTO
 
 #include <openssl/evp.h>
 
@@ -45,4 +45,4 @@ hashkit_string_st *aes_decrypt(aes_key_t *_aes_key, const char *source, size_t s
 aes_key_t *aes_create_key(const char *key, const size_t key_length);
 
 aes_key_t *aes_clone_key(aes_key_t *_aes_key);
-#endif
\ No newline at end of file
+#endif