Commit af448835 authored by Laurence Tratt's avatar Laurence Tratt
Browse files

Explicitly support LibreSSL 2.9.0.

parent 91a78bc3
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -109,6 +109,9 @@ libressl_250: &LIBRESSL_250
libressl_28x: &LIBRESSL_28x
  LIBRARY: libressl
  VERSION: 2.8.2
libressl_290: &LIBRESSL_290
  LIBRARY: libressl
  VERSION: 2.9.0

x86_64: &X86_64
  TARGET: x86_64-unknown-linux-gnu
@@ -197,6 +200,10 @@ jobs:
    <<: *JOB
    environment:
      <<: [*LIBRESSL_28x, *X86_64, *BASE]
  x86_64-libressl-2.9.0:
    <<: *JOB
    environment:
      <<: [*LIBRESSL_290, *X86_64, *BASE]
  macos:
    <<: *MACOS_JOB
    environment:
+2 −1
Original line number Diff line number Diff line
@@ -504,6 +504,7 @@ See rust-openssl README for more information:
            (8, 0) => ('8', '0'),
            (8, 1) => ('8', '1'),
            (8, _) => ('8', 'x'),
            (9, 0) => ('9', '0'),
            _ => version_error(),
        };

@@ -544,7 +545,7 @@ fn version_error() -> ! {
        "

This crate is only compatible with OpenSSL 1.0.1 through 1.1.1, or LibreSSL 2.5
through 2.8.1, but a different version of OpenSSL was found. The build is now aborting
through 2.9.0, but a different version of OpenSSL was found. The build is now aborting
due to this version mismatch.

"