Unverified Commit 098304b4 authored by Steven Fackler's avatar Steven Fackler
Browse files

Fix 1.0.x build

parent 90b04e06
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
@@ -13,16 +13,20 @@ const INCLUDES: &str = "
#include <openssl/ec.h>
#include <openssl/evp.h>
#include <openssl/hmac.h>
#include <openssl/ocsp.h>
#include <openssl/opensslv.h>
#include <openssl/pkcs7.h>
#include <openssl/rsa.h>
#include <openssl/sha.h>
#include <openssl/ssl.h>
#include <openssl/stack.h>
#include <openssl/x509_vfy.h>
#include <openssl/x509.h>
#include <openssl/ocsp.h>
#include <openssl/x509_vfy.h>
#include <openssl/x509v3.h>

#if OPENSSL_VERSION_NUMBER >= 0x010100000
#include <openssl/kdf.h>
#include <openssl/ssl.h>
#endif
";

pub fn run(include_dirs: &[PathBuf]) {