Skip to content
Snippets Groups Projects
Commit 2c3fdda9 authored by Jan Včelák's avatar Jan Včelák :rocket:
Browse files

DNSSEC: fix OpenSSL version detection

parent af6aedda
Branches
Tags
No related merge requests found
......@@ -28,6 +28,11 @@
#define _KNOT_DNSSEC_CONFIG_H_
#include <openssl/opensslconf.h>
#include <openssl/opensslv.h>
#ifndef OPENSSL_VERSION_NUMBER
#error "OpenSSL version is not defined."
#endif
// ECDSA support requires OpenSSL version >= 1.0.1
#if !defined(OPENSSL_NO_ECDSA) && OPENSSL_VERSION_NUMBER >= 0x10001000
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment