diff options
author | Richard Levitte <levitte@openssl.org> | 2002-10-11 20:06:08 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2002-10-11 20:06:08 +0200 |
commit | ecd45314b88cc4b630955b8f9c8d146b0d7a317b (patch) | |
tree | 790d9345d46d655a91380f78c496eb13c493719e /engines/e_sureware.c | |
parent | synchronize with 0.9.7-stable version of this file (diff) | |
download | openssl-ecd45314b88cc4b630955b8f9c8d146b0d7a317b.tar.xz openssl-ecd45314b88cc4b630955b8f9c8d146b0d7a317b.zip |
Step 6 of move of engines: rename the macro ENGINE_DYNAMIC_SUPPORT to
OPENSSL_NO_DYNAMIC_ENGINE and make sure that gets defined unless
shared library support has been specifically requested.
Diffstat (limited to 'engines/e_sureware.c')
-rw-r--r-- | engines/e_sureware.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/e_sureware.c b/engines/e_sureware.c index 89f708661d..89488b9e1b 100644 --- a/engines/e_sureware.c +++ b/engines/e_sureware.c @@ -278,7 +278,7 @@ static int bind_sureware(ENGINE *e) return 1; } -#ifdef ENGINE_DYNAMIC_SUPPORT +#ifndef OPENSSL_NO_DYNAMIC_ENGINE static int bind_helper(ENGINE *e, const char *id) { if(id && (strcmp(id, engine_sureware_id) != 0)) |