Commit a57bfe43 authored by Matt Caswell's avatar Matt Caswell
Browse files

Resolved unresolved symbols with no-hw



Compiling on Windows with no-hw was resulting in unresolved symbols
in the padlock engine.

Reviewed-by: default avatarRichard Levitte <levitte@openssl.org>
parent 114de5b5
Loading
Loading
Loading
Loading
+10 −7
Original line number Diff line number Diff line
@@ -798,7 +798,12 @@ static RAND_METHOD padlock_rand = {
    padlock_rand_status,        /* rand status */
};

#  else                         /* !COMPILE_HW_PADLOCK */
#  endif                        /* COMPILE_HW_PADLOCK */
# endif                         /* !OPENSSL_NO_HW_PADLOCK */
#endif                          /* !OPENSSL_NO_HW */

#if defined(OPENSSL_NO_HW) || defined(OPENSSL_NO_HW_PADLOCK) \
        || !defined(COMPILE_HW_PADLOCK)
# ifndef OPENSSL_NO_DYNAMIC_ENGINE
OPENSSL_EXPORT
    int bind_engine(ENGINE *e, const char *id, const dynamic_fns *fns);
@@ -810,6 +815,4 @@ OPENSSL_EXPORT

IMPLEMENT_DYNAMIC_CHECK_FN()
# endif
#  endif                        /* COMPILE_HW_PADLOCK */
# endif                         /* !OPENSSL_NO_HW_PADLOCK */
#endif                          /* !OPENSSL_NO_HW */
#endif