- I made the OpenSSL code build again with OpenSSL 0.9.6. The CRLFILE
functionality killed it due to its unconditional use of X509_STORE_set_flags...
This commit is contained in:
parent
b8a9f19515
commit
0ace5f6553
5
CHANGES
5
CHANGES
@ -7,6 +7,11 @@
|
||||
Changelog
|
||||
|
||||
|
||||
Daniel Stenberg (10 Jun 2008)
|
||||
- I made the OpenSSL code build again with OpenSSL 0.9.6. The CRLFILE
|
||||
functionality killed it due to its unconditional use of
|
||||
X509_STORE_set_flags...
|
||||
|
||||
Daniel Stenberg (8 Jun 2008)
|
||||
- Due to the three new libcurl changes and the massive command line option
|
||||
change I decided we'll mark it by bumping the next release number to 7.19.0!
|
||||
|
@ -108,6 +108,13 @@
|
||||
#define SSL_METHOD_QUAL
|
||||
#endif
|
||||
|
||||
#if OPENSSL_VERSION_NUMBER >= 0x00907000L
|
||||
/* 0.9.6 didn't have X509_STORE_set_flags() */
|
||||
#define HAVE_X509_STORE_SET_FLAGS 1
|
||||
#else
|
||||
#define X509_STORE_set_flags(x,y)
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Number of bytes to read from the random number seed file. This must be
|
||||
* a finite value (because some entropy "files" like /dev/urandom have
|
||||
|
Loading…
x
Reference in New Issue
Block a user