diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2005-11-06 17:58:26 +0000 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2005-11-06 17:58:26 +0000 |
commit | fbf002bb889d88ceb65d10c9c0062410e278f3e9 (patch) | |
tree | 4d018454aa66af723acca0db3cd2dce5ccc4d836 /Configure | |
parent | 9135fddb0e7b66c4b1a2b82065f1ee4088840f4c (diff) | |
download | openssl-new-fbf002bb889d88ceb65d10c9c0062410e278f3e9.tar.gz |
Update from stable branch.
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 17 |
1 files changed, 11 insertions, 6 deletions
@@ -866,6 +866,8 @@ foreach (sort (keys %disabled)) { $no_shared = 1; } elsif (/^zlib$/) { $zlib = 0; } + elsif (/^static-engine$/) + { } elsif (/^zlib-dynamic$/) { } elsif (/^symlinks$/) @@ -1124,13 +1126,16 @@ if (!$no_shared) } } -if ($no_shared) +if (!$IsMK1MF) { - $openssl_other_defines.="#define OPENSSL_NO_DYNAMIC_ENGINE\n"; - } -else - { - $openssl_other_defines.="#define OPENSSL_NO_STATIC_ENGINE\n"; + if ($no_shared) + { + $openssl_other_defines.="#define OPENSSL_NO_DYNAMIC_ENGINE\n"; + } + else + { + $openssl_other_defines.="#define OPENSSL_NO_STATIC_ENGINE\n"; + } } $cpuid_obj.=" uplink.o uplink-cof.o" if ($cflags =~ /\-DOPENSSL_USE_APPLINK/); |