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

Collapse All | Expand All

(-)vendor/openssl-sys/build/cfgs.rs (+3 lines)
Lines 62-67 Link Here
62
        if libressl_version >= 0x3_08_02_00_0 {
62
        if libressl_version >= 0x3_08_02_00_0 {
63
            cfgs.push("libressl382");
63
            cfgs.push("libressl382");
64
        }
64
        }
65
        if libressl_version >= 0x3_08_03_00_0 {
66
            cfgs.push("libressl383");
67
        }
65
        if libressl_version >= 0x3_09_00_00_0 {
68
        if libressl_version >= 0x3_09_00_00_0 {
66
            cfgs.push("libressl390");
69
            cfgs.push("libressl390");
67
        }
70
        }
(-)vendor/openssl-sys-0.9.92/build/main.rs (+1 lines)
Lines 273-278 Link Here
273
            (3, 7, 1) => ('3', '7', '1'),
273
            (3, 7, 1) => ('3', '7', '1'),
274
            (3, 7, _) => ('3', '7', 'x'),
274
            (3, 7, _) => ('3', '7', 'x'),
275
            (3, 8, 0) => ('3', '8', '0'),
275
            (3, 8, 0) => ('3', '8', '0'),
276
            (3, 8, _) => ('3', '8', 'x'),
276
            _ => version_error(),
277
            _ => version_error(),
277
        };
278
        };

Return to bug 266670