summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorBernd Edlinger <bernd.edlinger@hotmail.de>2019-09-13 10:45:29 +0200
committerBernd Edlinger <bernd.edlinger@hotmail.de>2019-09-16 18:23:20 +0200
commit3b2f8c771a1babbe223c9f1ca76fbc9dec5f915f (patch)
tree830f15b249465769b3b2009a44b96abe1ca35510 /crypto
parent1aa89a7a3afb053d0c0b7fad8d3ea1b0a5447289 (diff)
Fix building statically without any dso support
Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/9895)
Diffstat (limited to 'crypto')
-rw-r--r--crypto/include/internal/dso_conf.h.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/include/internal/dso_conf.h.in b/crypto/include/internal/dso_conf.h.in
index b6703f7c1d..9a373b2032 100644
--- a/crypto/include/internal/dso_conf.h.in
+++ b/crypto/include/internal/dso_conf.h.in
@@ -16,7 +16,7 @@
# has support compiled in for them. Currently each method is enabled
# by a define "DSO_<name>" ... we translate the "dso_scheme" config
# string entry into using the following logic;
- my $scheme = uc $target{dso_scheme};
+ my $scheme = $disabled{dso} ? undef : uc $target{dso_scheme};
if (!$scheme) {
$scheme = "NONE";
}