1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

Header files are in openssl/ only if USE_OPENSSL is set.

This commit is contained in:
Dan Fandrich 2004-12-14 20:25:23 +00:00
parent 358e08b95d
commit 10d6d8b2ae

View File

@ -52,8 +52,14 @@
#include <curl/mprintf.h> #include <curl/mprintf.h>
#ifdef USE_SSLEAY #ifdef USE_SSLEAY
#ifdef USE_OPENSSL
#include <openssl/rand.h> #include <openssl/rand.h>
#include <openssl/x509v3.h> #include <openssl/x509v3.h>
#else
#include <rand.h>
#include <x509v3.h>
#endif
#include "memory.h" #include "memory.h"