diff options
| author | Laurence Tratt <[email protected]> | 2015-10-03 17:25:38 +0059 |
|---|---|---|
| committer | Laurence Tratt <[email protected]> | 2015-10-03 17:25:38 +0059 |
| commit | d7342a09a77088e096535205944ffc4a201b8c5d (patch) | |
| tree | 1754651db9aac998f78246182713410da4ef1529 /openssl-sys | |
| parent | Merge pull request #279 from jtdowney/sslv23_docs (diff) | |
| download | rust-openssl-d7342a09a77088e096535205944ffc4a201b8c5d.tar.xz rust-openssl-d7342a09a77088e096535205944ffc4a201b8c5d.zip | |
Fix build on LibreSSL.
LibreSSL has deprecated SSLv3_method, so this commit makes that a compile-time
feature.
It also removes a test referencing SSL_OP_CISCO_ANYCONNECT, as the LibreSSL
header says it is amongst "Obsolete flags kept for compatibility. No sane code
should use them."
Diffstat (limited to 'openssl-sys')
| -rw-r--r-- | openssl-sys/Cargo.toml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/openssl-sys/Cargo.toml b/openssl-sys/Cargo.toml index 5a01318c..0bdb814b 100644 --- a/openssl-sys/Cargo.toml +++ b/openssl-sys/Cargo.toml @@ -17,6 +17,7 @@ tlsv1_1 = [] dtlsv1 = [] dtlsv1_2 = [] sslv2 = [] +sslv3 = [] aes_xts = [] aes_ctr = [] npn = [] |