View | Details | Raw Unified | Return to bug 250589 | Differences between
and this patch

Collapse All | Expand All

(-)vendor/openssl-sys/build/main.rs (-1 / +2 lines)
Lines 221-226 Link Here
221
            (3, 1, 0) => ('3', '1', '0'),
221
            (3, 1, 0) => ('3', '1', '0'),
222
            (3, 1, _) => ('3', '1', 'x'),
222
            (3, 1, _) => ('3', '1', 'x'),
223
            (3, 2, 0) => ('3', '2', '0'),
223
            (3, 2, 0) => ('3', '2', '0'),
224
            (3, 2, 2) => ('3', '2', '2'),
224
            _ => version_error(),
225
            _ => version_error(),
225
        };
226
        };
226
227
Lines 261-267 Link Here
261
        "
262
        "
262
263
263
This crate is only compatible with OpenSSL 1.0.1 through 1.1.1, or LibreSSL 2.5
264
This crate is only compatible with OpenSSL 1.0.1 through 1.1.1, or LibreSSL 2.5
264
through 3.2.0, but a different version of OpenSSL was found. The build is now aborting
265
through 3.2.2, but a different version of OpenSSL was found. The build is now aborting
265
due to this version mismatch.
266
due to this version mismatch.
266
267
267
"
268
"

Return to bug 250589