Browse code

removed SSL version query due to windows build issue

Kevin Lin authored on 2014/10/02 06:23:09
Showing 1 changed files
... ...
@@ -34,8 +34,6 @@
34 34
 #include <sys/types.h>
35 35
 #include <sys/stat.h>
36 36
 #include <dirent.h>
37
-#include <openssl/crypto.h>
38
-#include <openssl/opensslv.h>
39 37
 
40 38
 #include "shared/optparser.h"
41 39
 #include "shared/misc.h"
... ...
@@ -254,10 +252,6 @@ static void print_platform(struct cli_environment *env)
254 254
     printf("zlib version: %s (%s)\n",
255 255
 	   ZLIB_VERSION, zlibVersion());
256 256
 #endif
257
-    /* openssl version querying */
258
-    if (OPENSSL_VERSION_NUMBER != SSLeay())
259
-	printf("WARNING: openssl version mismatch: %ld (%ld)\n", OPENSSL_VERSION_NUMBER, SSLeay());
260
-    printf("openssl version: %s\n", SSLeay_version(SSLEAY_VERSION));
261 257
 
262 258
     if (env->triple[0])
263 259
     printf("Triple: %s\n", env->triple);