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

Collapse All | Expand All

(-)vendor/openssl-sys/build/main.rs (-1 / +2 lines)
Lines 237-242 Link Here
237
            (3, 3, 0) => ('3', '3', '0'),
237
            (3, 3, 0) => ('3', '3', '0'),
238
            (3, 3, 1) => ('3', '3', '1'),
238
            (3, 3, 1) => ('3', '3', '1'),
239
            (3, 3, _) => ('3', '3', 'x'),
239
            (3, 3, _) => ('3', '3', 'x'),
240
            (3, 4, _) => ('3', '4', 'x'),
240
            _ => version_error(),
241
            _ => version_error(),
241
        };
242
        };
242
243
Lines 279-285 Link Here
279
        "
280
        "
280
281
281
This crate is only compatible with OpenSSL 1.0.1 through 1.1.1, or LibreSSL 2.5
282
This crate is only compatible with OpenSSL 1.0.1 through 1.1.1, or LibreSSL 2.5
282
through 3.3.x, but a different version of OpenSSL was found. The build is now aborting
283
through 3.4.x, but a different version of OpenSSL was found. The build is now aborting
283
due to this version mismatch.
284
due to this version mismatch.
284
285
285
"
286
"

Return to bug 259738