summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2017-03-24 16:19:00 +0100
committerRichard Levitte <levitte@openssl.org>2017-06-28 12:54:33 +0200
commit619eb33a0c3dc488ba2bcc366633220813b701c7 (patch)
tree3fe0209771791d7e8b0de89005e3f74f6515780e /Configure
parent9a32dcf42e2f728018a02b27df9734be480b7f3c (diff)
Add new /dev/crypto engine
Based on cryptodev-linux Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3744)
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure4
1 files changed, 3 insertions, 1 deletions
diff --git a/Configure b/Configure
index 65fcea067f..2eacb2312e 100755
--- a/Configure
+++ b/Configure
@@ -345,6 +345,7 @@ my @disablables = (
"ct",
"deprecated",
"des",
+ "devcryptoeng",
"dgram",
"dh",
"dsa",
@@ -431,6 +432,7 @@ our %disabled = ( # "what" => "comment"
"asan" => "default",
"crypto-mdebug" => "default",
"crypto-mdebug-backtrace" => "default",
+ "devcryptoeng" => "default",
"ec_nistp_64_gcc_128" => "default",
"egd" => "default",
"external-tests" => "default",
@@ -504,7 +506,7 @@ my @disable_cascades = (
# Without position independent code, there can be no shared libraries or DSOs
"pic" => [ "shared" ],
"shared" => [ "dynamic-engine" ],
- "engine" => [ "afalgeng" ],
+ "engine" => [ "afalgeng", "devcryptoeng" ],
# no-autoalginit is only useful when building non-shared
"autoalginit" => [ "shared", "apps" ],