diff options
author | FdaSilvaYY <fdasilvayy@gmail.com> | 2016-02-25 20:55:51 +0100 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2016-02-25 21:23:40 +0100 |
commit | 069c3c0908dfa8418753d0c25890a9d4fb67178d (patch) | |
tree | c6106b2016737acd49fb5db86f215ac727dcf116 /test/dtlsv1listentest.c | |
parent | Add some 'no-engine' builds to travis, for test (diff) | |
download | openssl-069c3c0908dfa8418753d0c25890a9d4fb67178d.tar.xz openssl-069c3c0908dfa8418753d0c25890a9d4fb67178d.zip |
fix "no-engine" build of test fixture
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'test/dtlsv1listentest.c')
-rw-r--r-- | test/dtlsv1listentest.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/dtlsv1listentest.c b/test/dtlsv1listentest.c index 78ac83ab4a..6eef1b5e4e 100644 --- a/test/dtlsv1listentest.c +++ b/test/dtlsv1listentest.c @@ -60,7 +60,9 @@ #include <openssl/bio.h> #include <openssl/err.h> #include <openssl/conf.h> -#include <openssl/engine.h> +#ifndef OPENSSL_NO_ENGINE + #include <openssl/engine.h> +#endif #include "e_os.h" /* Just a ClientHello without a cookie */ |