From: Daniel Stenberg Date: Fri, 16 Mar 2007 22:44:46 +0000 (+0000) Subject: openssl/bio.h doesn't exist when we build with yassl so avoid trying X-Git-Tag: curl-7_16_2~171 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c1f3edbdd1bfd08054e260c780ee8a0e3f90fadf;p=thirdparty%2Fcurl.git openssl/bio.h doesn't exist when we build with yassl so avoid trying --- diff --git a/tests/libtest/lib509.c b/tests/libtest/lib509.c index 03963b39f7..34749e2d35 100644 --- a/tests/libtest/lib509.c +++ b/tests/libtest/lib509.c @@ -15,6 +15,10 @@ #include #include +#include + +#ifndef YASSL_VERSION + #include #include #include @@ -25,7 +29,6 @@ #include #include #include -#include #include "testutil.h" @@ -332,7 +335,7 @@ int test(char *URL) return i; } - +#endif /* YASSL_VERSION */ #else /* USE_SSLEAY */ int test(char *URL)