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
1 changed files with 6 additions and 0 deletions

View File

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