diff options
author | Eneas U de Queiroz <cote2004-github@yahoo.com> | 2018-10-09 21:17:42 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2018-11-09 04:19:24 +0100 |
commit | 624d19ac2d56fa86a22417c35536caceb3be346f (patch) | |
tree | 151568ee6e6277be2e00cdb8eda657bb6f92076a /openbsd-compat/libressl-api-compat.c | |
parent | Simplify OpenSSL 1.1 function checks. (diff) | |
download | openssh-624d19ac2d56fa86a22417c35536caceb3be346f.tar.xz openssh-624d19ac2d56fa86a22417c35536caceb3be346f.zip |
fix compilation with openssl built without ECC
ECDSA code in openssh-compat.h and libressl-api-compat.c needs to be
guarded by OPENSSL_HAS_ECC
Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
Diffstat (limited to 'openbsd-compat/libressl-api-compat.c')
-rw-r--r-- | openbsd-compat/libressl-api-compat.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/openbsd-compat/libressl-api-compat.c b/openbsd-compat/libressl-api-compat.c index de3e64a63..ae00ff593 100644 --- a/openbsd-compat/libressl-api-compat.c +++ b/openbsd-compat/libressl-api-compat.c @@ -152,7 +152,9 @@ #include <openssl/dsa.h> #include <openssl/rsa.h> #include <openssl/evp.h> +#ifdef OPENSSL_HAS_ECC #include <openssl/ecdsa.h> +#endif #include <openssl/dh.h> #ifndef HAVE_DSA_GET0_PQG @@ -417,6 +419,7 @@ DSA_SIG_set0(DSA_SIG *sig, BIGNUM *r, BIGNUM *s) } #endif /* HAVE_DSA_SIG_SET0 */ +#ifdef OPENSSL_HAS_ECC #ifndef HAVE_ECDSA_SIG_GET0 void ECDSA_SIG_get0(const ECDSA_SIG *sig, const BIGNUM **pr, const BIGNUM **ps) @@ -442,6 +445,7 @@ ECDSA_SIG_set0(ECDSA_SIG *sig, BIGNUM *r, BIGNUM *s) return 1; } #endif /* HAVE_ECDSA_SIG_SET0 */ +#endif /* OPENSSL_HAS_ECC */ #ifndef HAVE_DH_GET0_PQG void |