Fix no-dso (shlibloadtest)
authorRichard Levitte <levitte@openssl.org>
Thu, 10 Nov 2016 01:08:22 +0000 (02:08 +0100)
committerMatt Caswell <matt@openssl.org>
Thu, 10 Nov 2016 10:12:00 +0000 (10:12 +0000)
Reviewed-by: Matt Caswell <matt@openssl.org>
test/shlibloadtest.c

index eea2e3ae1c857e046c0b459ca5d21a980ad76319..6f220ba5302795cdc1b1af87b7bcf9882dd76dab 100644 (file)
@@ -12,6 +12,9 @@
 #include <stdlib.h>
 #include <openssl/opensslv.h>
 
+/* The test is only currently implemented for DSO_DLFCN and DSO_WIN32 */
+#if defined(DSO_DLFCN) || defined(DSO_WIN32)
+
 #define SSL_CTX_NEW "SSL_CTX_new"
 #define SSL_CTX_FREE "SSL_CTX_free"
 #define TLS_METHOD "TLS_method"
@@ -35,7 +38,6 @@ static SSL_CTX_free_t SSL_CTX_free;
 static ERR_get_error_t ERR_get_error;
 static OpenSSL_version_num_t OpenSSL_version_num;
 
-
 #ifdef DSO_DLFCN
 
 # include <dlfcn.h>
@@ -103,9 +105,6 @@ static int shlib_close(SHLIB lib)
 
 #endif
 
-/* The test is only currently implemented for DSO_DLFCN and DSO_WIN32 */
-#if defined(DSO_DLFCN) || defined(DSO_WIN32)
-
 # define CRYPTO_FIRST_OPT    "-crypto_first"
 # define SSL_FIRST_OPT       "-ssl_first"
 # define JUST_CRYPTO_OPT     "-just_crypto"