From ffd94cce6b34170124de81012e7ba7902d920734 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Tue, 28 Jan 2014 20:11:07 +0100 Subject: [PATCH] Fix curve list in dependency checking --- include/polarssl/config.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/include/polarssl/config.h b/include/polarssl/config.h index 83f9dac58..daec4e1e4 100644 --- a/include/polarssl/config.h +++ b/include/polarssl/config.h @@ -1974,7 +1974,11 @@ !defined(POLARSSL_ECP_DP_SECP521R1_ENABLED) && \ !defined(POLARSSL_ECP_DP_BP256R1_ENABLED) && \ !defined(POLARSSL_ECP_DP_BP384R1_ENABLED) && \ - !defined(POLARSSL_ECP_DP_BP512R1_ENABLED) ) ) + !defined(POLARSSL_ECP_DP_BP512R1_ENABLED) && \ + !defined(POLARSSL_ECP_DP_M255_ENABLED) && \ + !defined(POLARSSL_ECP_DP_SECP192K1_ENABLED) && \ + !defined(POLARSSL_ECP_DP_SECP224K1_ENABLED) && \ + !defined(POLARSSL_ECP_DP_SECP256K1_ENABLED) ) ) #error "POLARSSL_ECP_C defined, but not all prerequisites" #endif