summaryrefslogtreecommitdiffstats
path: root/providers/common
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2019-09-11 10:04:23 +0100
committerMatt Caswell <matt@openssl.org>2019-09-12 10:12:28 +0100
commit8d0f8c818117132a38005a046f0daacd1219e217 (patch)
treea6e6cf60f2a7ba6b2406d97f280d3b0f30dc794e /providers/common
parent98b687f8d053662f8d7fee586d5a91d86fecdfee (diff)
Fix no-dsa
Also fixes no-dh Reviewed-by: Tim Hudson <tjh@openssl.org> (Merged from https://github.com/openssl/openssl/pull/9861)
Diffstat (limited to 'providers/common')
-rw-r--r--providers/common/keymgmt/build.info6
1 files changed, 5 insertions, 1 deletions
diff --git a/providers/common/keymgmt/build.info b/providers/common/keymgmt/build.info
index 4e7bc750f5..e66190c401 100644
--- a/providers/common/keymgmt/build.info
+++ b/providers/common/keymgmt/build.info
@@ -1,5 +1,9 @@
LIBS=../../../libcrypto
IF[{- !$disabled{dh} -}]
SOURCE[../../../libcrypto]=\
- dh_kmgmt.c dsa_kmgmt.c
+ dh_kmgmt.c
+ENDIF
+IF[{- !$disabled{dsa} -}]
+ SOURCE[../../../libcrypto]=\
+ dsa_kmgmt.c
ENDIF