diff options
author | Richard Levitte <levitte@openssl.org> | 2016-02-19 22:08:37 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2016-02-20 16:51:31 +0100 |
commit | 343ec2b083b82ccf9ce96020bc95320390296f1f (patch) | |
tree | e159c94c1ebe2bb60fec21911c095b74e15865fe /engines/build.info | |
parent | Always build library object files with shared library cflags (diff) | |
download | openssl-343ec2b083b82ccf9ce96020bc95320390296f1f.tar.xz openssl-343ec2b083b82ccf9ce96020bc95320390296f1f.zip |
Build dynamic engines even if configured "no-shared"
Until now, the engines in engines/ were only built as dynamicaly
loadable ones if shared libraries were built.
We not dissociate the two and can build dynamicaly loadable engines
even if we only build static libcrypto and libssl. This is controlled
with the option (enable|disable|no)-static-engine, defaulting to
no-static-engine.
Note that the engines in crypto/engine/ (dynamic and cryptodev) will
always be built into libcrypto.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'engines/build.info')
-rw-r--r-- | engines/build.info | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/build.info b/engines/build.info index cae49862ed..98f0e58ee9 100644 --- a/engines/build.info +++ b/engines/build.info @@ -1,5 +1,5 @@ {- use File::Spec::Functions qw/:DEFAULT rel2abs/; -} -IF[{- $config{no_shared} -}] +IF[{- !$config{dynamic_engines} -}] LIBS=../libcrypto SOURCE[../libcrypto]=\ e_padlock.c {- $target{padlock_asm_src} -} \ |