From cef933034942d17185ace639cf81809fe1997e76 Mon Sep 17 00:00:00 2001 From: Love Hornquist Astrand Date: Thu, 6 Aug 2009 09:19:08 +0200 Subject: [PATCH] If using OpenSSL, require EC --- cf/crypto.m4 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cf/crypto.m4 b/cf/crypto.m4 index 5d965cbfc..7de856891 100644 --- a/cf/crypto.m4 +++ b/cf/crypto.m4 @@ -17,6 +17,7 @@ m4_define([test_headers], [ #include #include #include + #include #include #include #include @@ -48,6 +49,7 @@ m4_define([test_body], [ SHA256_Init(&sha256); EVP_CIPHER_iv_length(((EVP_CIPHER*)0)); #ifdef HAVE_OPENSSL + EC_KEY_new(); RAND_status(); UI_UTIL_read_pw_string(0,0,0,0); #endif