diff options
author | Pauli <paul.dale@oracle.com> | 2017-07-28 01:25:59 +0200 |
---|---|---|
committer | Pauli <paul.dale@oracle.com> | 2017-07-28 01:25:59 +0200 |
commit | e89f5fb37014514f0c273980c3d6cbedfa73f862 (patch) | |
tree | dec9a5be7b187743fdcdb0b43a40ac338ff8c7ef /test/enginetest.c | |
parent | Remove trailing whitespace from store-related man pages (diff) | |
download | openssl-e89f5fb37014514f0c273980c3d6cbedfa73f862.tar.xz openssl-e89f5fb37014514f0c273980c3d6cbedfa73f862.zip |
OPENSSL_NO_ENGINE defined causes build failures
TEST_note as an undefined link symbol is the symptom.
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4032)
Diffstat (limited to 'test/enginetest.c')
-rw-r--r-- | test/enginetest.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/enginetest.c b/test/enginetest.c index d32260f5ca..4e78277859 100644 --- a/test/enginetest.c +++ b/test/enginetest.c @@ -12,12 +12,13 @@ #include <stdlib.h> #include <openssl/e_os2.h> +# include "testutil.h" + #ifndef OPENSSL_NO_ENGINE # include <openssl/buffer.h> # include <openssl/crypto.h> # include <openssl/engine.h> # include <openssl/err.h> -# include "testutil.h" static void display_engine_list(void) { |