1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
|
diff --git a/vendor/openssl-0.10.38/build.rs b/vendor/openssl-0.10.38/build.rs
index d90ebc17..3e323cea 100644
--- a/vendor/openssl-0.10.38/build.rs
+++ b/vendor/openssl-0.10.38/build.rs
@@ -78,5 +78,41 @@ fn main() {
if version >= 0x3_04_00_00_0 {
println!("cargo:rustc-cfg=libressl340");
}
+
+ if version >= 0x3_05_00_00_0 {
+ println!("cargo:rustc-cfg=libressl350");
+ }
+
+ if version >= 0x3_06_00_00_0 {
+ println!("cargo:rustc-cfg=libressl360");
+ }
+
+ if version >= 0x3_06_01_00_0 {
+ println!("cargo:rustc-cfg=libressl361");
+ }
+
+ if version >= 0x3_07_00_00_0 {
+ println!("cargo:rustc-cfg=libressl370");
+ }
+
+ if version >= 0x3_08_00_00_0 {
+ println!("cargo:rustc-cfg=libressl380");
+ }
+
+ if version >= 0x3_08_02_00_0 {
+ println!("cargo:rustc-cfg=libressl382");
+ }
+
+ if version >= 0x3_09_00_00_0 {
+ println!("cargo:rustc-cfg=libressl390");
+ }
+
+ if version >= 0x4_00_00_00_0 {
+ println!("cargo:rustc-cfg=libressl400");
+ }
+
+ if version >= 0x4_01_00_00_0 {
+ println!("cargo:rustc-cfg=libressl410");
+ }
}
}
diff --git a/vendor/openssl-0.10.57/build.rs b/vendor/openssl-0.10.57/build.rs
index 0a974b33..791fb8a5 100644
--- a/vendor/openssl-0.10.57/build.rs
+++ b/vendor/openssl-0.10.57/build.rs
@@ -67,6 +67,21 @@ fn main() {
if version >= 0x3_07_00_00_0 {
println!("cargo:rustc-cfg=libressl370");
}
+ if version >= 0x3_08_00_00_0 {
+ println!("cargo:rustc-cfg=libressl380");
+ }
+ if version >= 0x3_08_02_00_0 {
+ println!("cargo:rustc-cfg=libressl382");
+ }
+ if version >= 0x3_09_00_00_0 {
+ println!("cargo:rustc-cfg=libressl390");
+ }
+ if version >= 0x4_00_00_00_0 {
+ println!("cargo:rustc-cfg=libressl400");
+ }
+ if version >= 0x4_01_00_00_0 {
+ println!("cargo:rustc-cfg=libressl410");
+ }
}
if let Ok(vars) = env::var("DEP_OPENSSL_CONF") {
@@ -103,60 +118,4 @@ fn main() {
println!("cargo:rustc-cfg=ossl310");
}
}
-
- if let Ok(version) = env::var("DEP_OPENSSL_LIBRESSL_VERSION_NUMBER") {
- let version = u64::from_str_radix(&version, 16).unwrap();
-
- if version >= 0x2_05_01_00_0 {
- println!("cargo:rustc-cfg=libressl251");
- }
-
- if version >= 0x2_06_01_00_0 {
- println!("cargo:rustc-cfg=libressl261");
- }
-
- if version >= 0x2_07_00_00_0 {
- println!("cargo:rustc-cfg=libressl270");
- }
-
- if version >= 0x2_07_01_00_0 {
- println!("cargo:rustc-cfg=libressl271");
- }
-
- if version >= 0x2_07_03_00_0 {
- println!("cargo:rustc-cfg=libressl273");
- }
-
- if version >= 0x2_08_00_00_0 {
- println!("cargo:rustc-cfg=libressl280");
- }
-
- if version >= 0x2_09_01_00_0 {
- println!("cargo:rustc-cfg=libressl291");
- }
-
- if version >= 0x3_02_01_00_0 {
- println!("cargo:rustc-cfg=libressl321");
- }
-
- if version >= 0x3_03_02_00_0 {
- println!("cargo:rustc-cfg=libressl332");
- }
-
- if version >= 0x3_04_00_00_0 {
- println!("cargo:rustc-cfg=libressl340");
- }
-
- if version >= 0x3_05_00_00_0 {
- println!("cargo:rustc-cfg=libressl350");
- }
-
- if version >= 0x3_06_00_00_0 {
- println!("cargo:rustc-cfg=libressl360");
- }
-
- if version >= 0x3_06_01_00_0 {
- println!("cargo:rustc-cfg=libressl361");
- }
- }
}
diff --git a/vendor/openssl-0.10.57/src/conf.rs b/vendor/openssl-0.10.57/src/conf.rs
index 715519c5..88740298 100644
--- a/vendor/openssl-0.10.57/src/conf.rs
+++ b/vendor/openssl-0.10.57/src/conf.rs
@@ -8,7 +8,7 @@ foreign_type_and_impl_send_sync! {
pub struct ConfRef;
}
-#[cfg(not(boringssl))]
+#[cfg(not(any(boringssl, libressl400)))]
mod methods {
use super::Conf;
use crate::cvt_p;
@@ -61,5 +61,5 @@ mod methods {
}
}
}
-#[cfg(not(boringssl))]
+#[cfg(not(any(boringssl, libressl400)))]
pub use methods::*;
diff --git a/vendor/openssl-0.10.64/build.rs b/vendor/openssl-0.10.64/build.rs
index 7677abc0..4f5ca600 100644
--- a/vendor/openssl-0.10.64/build.rs
+++ b/vendor/openssl-0.10.64/build.rs
@@ -75,6 +75,12 @@ fn main() {
if version >= 0x3_09_00_00_0 {
println!("cargo:rustc-cfg=libressl390");
}
+ if version >= 0x4_00_00_00_0 {
+ println!("cargo:rustc-cfg=libressl400");
+ }
+ if version >= 0x4_01_00_00_0 {
+ println!("cargo:rustc-cfg=libressl410");
+ }
}
if let Ok(vars) = env::var("DEP_OPENSSL_CONF") {
diff --git a/vendor/openssl-0.10.64/src/conf.rs b/vendor/openssl-0.10.64/src/conf.rs
index 715519c5..a4261cbc 100644
--- a/vendor/openssl-0.10.64/src/conf.rs
+++ b/vendor/openssl-0.10.64/src/conf.rs
@@ -8,7 +8,7 @@ foreign_type_and_impl_send_sync! {
pub struct ConfRef;
}
-#[cfg(not(boringssl))]
+#[cfg(not(any(boringssl, libressl400)))]
mod methods {
use super::Conf;
use crate::cvt_p;
@@ -61,5 +61,5 @@ mod methods {
}
}
}
-#[cfg(not(boringssl))]
+#[cfg(not(and(boringssl, libressl400)))]
pub use methods::*;
diff --git a/vendor/openssl-sys-0.9.102/build/cfgs.rs b/vendor/openssl-sys-0.9.102/build/cfgs.rs
index 91cb734c..c53eabc4 100644
--- a/vendor/openssl-sys-0.9.102/build/cfgs.rs
+++ b/vendor/openssl-sys-0.9.102/build/cfgs.rs
@@ -65,6 +65,12 @@ pub fn get(openssl_version: Option<u64>, libressl_version: Option<u64>) -> Vec<&
if libressl_version >= 0x3_09_00_00_0 {
cfgs.push("libressl390");
}
+ if libressl_version >= 0x4_00_00_00_0 {
+ cfgs.push("libressl400");
+ }
+ if libressl_version >= 0x4_01_00_00_0 {
+ cfgs.push("libressl410");
+ }
} else {
let openssl_version = openssl_version.unwrap();
diff --git a/vendor/openssl-sys-0.9.102/build/main.rs b/vendor/openssl-sys-0.9.102/build/main.rs
index 606acc35..a30f788b 100644
--- a/vendor/openssl-sys-0.9.102/build/main.rs
+++ b/vendor/openssl-sys-0.9.102/build/main.rs
@@ -304,6 +304,10 @@ See rust-openssl documentation for more information:
(3, 8, _) => ('3', '8', 'x'),
(3, 9, 0) => ('3', '9', '0'),
(3, 9, _) => ('3', '9', 'x'),
+ (4, 0, 0) => ('4', '0', '0'),
+ (4, 0, _) => ('4', '0', 'x'),
+ (4, 1, 0) => ('4', '1', '0'),
+ (4, 1, _) => ('4', '1', 'x'),
_ => version_error(),
};
@@ -346,7 +350,7 @@ fn version_error() -> ! {
"
This crate is only compatible with OpenSSL (version 1.0.1 through 1.1.1, or 3), or LibreSSL 2.5
-through 3.9.x, but a different version of OpenSSL was found. The build is now aborting
+through 4.1.x, but a different version of OpenSSL was found. The build is now aborting
due to this version mismatch.
"
diff --git a/vendor/openssl-sys-0.9.104/build/cfgs.rs b/vendor/openssl-sys-0.9.104/build/cfgs.rs
index cd03888e..ca997074 100644
--- a/vendor/openssl-sys-0.9.104/build/cfgs.rs
+++ b/vendor/openssl-sys-0.9.104/build/cfgs.rs
@@ -68,6 +68,9 @@ pub fn get(openssl_version: Option<u64>, libressl_version: Option<u64>) -> Vec<&
if libressl_version >= 0x4_00_00_00_0 {
cfgs.push("libressl400");
}
+ if libressl_version >= 0x4_01_00_00_0 {
+ cfgs.push("libressl410");
+ }
} else {
let openssl_version = openssl_version.unwrap();
diff --git a/vendor/openssl-sys-0.9.104/build/main.rs b/vendor/openssl-sys-0.9.104/build/main.rs
index f379e1e6..0429f12a 100644
--- a/vendor/openssl-sys-0.9.104/build/main.rs
+++ b/vendor/openssl-sys-0.9.104/build/main.rs
@@ -103,6 +103,7 @@ fn main() {
println!("cargo:rustc-check-cfg=cfg(libressl382)");
println!("cargo:rustc-check-cfg=cfg(libressl390)");
println!("cargo:rustc-check-cfg=cfg(libressl400)");
+ println!("cargo:rustc-check-cfg=cfg(libressl410)");
println!("cargo:rustc-check-cfg=cfg(ossl101)");
println!("cargo:rustc-check-cfg=cfg(ossl102)");
@@ -382,6 +383,8 @@ See rust-openssl documentation for more information:
(3, 9, _) => ('3', '9', 'x'),
(4, 0, 0) => ('4', '0', '0'),
(4, 0, _) => ('4', '0', 'x'),
+ (4, 1, 0) => ('4', '1', '0'),
+ (4, 1, _) => ('4', '1', 'x'),
_ => version_error(),
};
@@ -424,7 +427,7 @@ fn version_error() -> ! {
"
This crate is only compatible with OpenSSL (version 1.0.1 through 1.1.1, or 3), or LibreSSL 2.5
-through 4.0.x, but a different version of OpenSSL was found. The build is now aborting
+through 4.1.x, but a different version of OpenSSL was found. The build is now aborting
due to this version mismatch.
"
diff --git a/vendor/openssl-sys-0.9.72/build/cfgs.rs b/vendor/openssl-sys-0.9.72/build/cfgs.rs
index 18b3e3de..b2b234a9 100644
--- a/vendor/openssl-sys-0.9.72/build/cfgs.rs
+++ b/vendor/openssl-sys-0.9.72/build/cfgs.rs
@@ -34,6 +34,36 @@ pub fn get(openssl_version: Option<u64>, libressl_version: Option<u64>) -> Vec<&
if libressl_version >= 0x3_03_02_00_0 {
cfgs.push("libressl332");
}
+ if libressl_version >= 0x3_04_00_00_0 {
+ cfgs.push("libressl340");
+ }
+ if libressl_version >= 0x3_05_00_00_0 {
+ cfgs.push("libressl350");
+ }
+ if libressl_version >= 0x3_06_00_00_0 {
+ cfgs.push("libressl360");
+ }
+ if libressl_version >= 0x3_07_00_00_0 {
+ cfgs.push("libressl370");
+ }
+ if libressl_version >= 0x3_08_00_00_0 {
+ cfgs.push("libressl380");
+ }
+ if libressl_version >= 0x3_08_01_00_0 {
+ cfgs.push("libressl381");
+ }
+ if libressl_version >= 0x3_08_02_00_0 {
+ cfgs.push("libressl382");
+ }
+ if libressl_version >= 0x3_09_00_00_0 {
+ cfgs.push("libressl390");
+ }
+ if libressl_version >= 0x4_00_00_00_0 {
+ cfgs.push("libressl400");
+ }
+ if libressl_version >= 0x4_01_00_00_0 {
+ cfgs.push("libressl410");
+ }
} else {
let openssl_version = openssl_version.unwrap();
diff --git a/vendor/openssl-sys-0.9.72/build/main.rs b/vendor/openssl-sys-0.9.72/build/main.rs
index 243f146b..8aacb403 100644
--- a/vendor/openssl-sys-0.9.72/build/main.rs
+++ b/vendor/openssl-sys-0.9.72/build/main.rs
@@ -254,6 +254,21 @@ See rust-openssl README for more information:
(3, 3, _) => ('3', '3', 'x'),
(3, 4, 0) => ('3', '4', '0'),
(3, 4, _) => ('3', '4', 'x'),
+ (3, 5, _) => ('3', '5', 'x'),
+ (3, 6, 0) => ('3', '6', '0'),
+ (3, 6, _) => ('3', '6', 'x'),
+ (3, 7, 0) => ('3', '7', '0'),
+ (3, 7, 1) => ('3', '7', '1'),
+ (3, 7, _) => ('3', '7', 'x'),
+ (3, 8, 0) => ('3', '8', '0'),
+ (3, 8, 1) => ('3', '8', '1'),
+ (3, 8, _) => ('3', '8', 'x'),
+ (3, 9, 0) => ('3', '9', '0'),
+ (3, 9, _) => ('3', '9', 'x'),
+ (4, 0, 0) => ('4', '0', '0'),
+ (4, 0, _) => ('4', '0', 'x'),
+ (4, 1, 0) => ('4', '1', '0'),
+ (4, 1, _) => ('4', '1', 'x'),
_ => version_error(),
};
@@ -296,7 +311,7 @@ fn version_error() -> ! {
"
This crate is only compatible with OpenSSL (version 1.0.1 through 1.1.1, or 3.0.0), or LibreSSL 2.5
-through 3.4.1, but a different version of OpenSSL was found. The build is now aborting
+through 4.1.x, but a different version of OpenSSL was found. The build is now aborting
due to this version mismatch.
"
diff --git a/vendor/openssl-sys-0.9.92/build/cfgs.rs b/vendor/openssl-sys-0.9.92/build/cfgs.rs
index 2f3ff3ea..d800f3d1 100644
--- a/vendor/openssl-sys-0.9.92/build/cfgs.rs
+++ b/vendor/openssl-sys-0.9.92/build/cfgs.rs
@@ -53,6 +53,24 @@ pub fn get(openssl_version: Option<u64>, libressl_version: Option<u64>) -> Vec<&
if libressl_version >= 0x3_07_00_00_0 {
cfgs.push("libressl370");
}
+ if libressl_version >= 0x3_08_00_00_0 {
+ cfgs.push("libressl380");
+ }
+ if libressl_version >= 0x3_08_01_00_0 {
+ cfgs.push("libressl381");
+ }
+ if libressl_version >= 0x3_08_02_00_0 {
+ cfgs.push("libressl382");
+ }
+ if libressl_version >= 0x3_09_00_00_0 {
+ cfgs.push("libressl390");
+ }
+ if libressl_version >= 0x4_00_00_00_0 {
+ cfgs.push("libressl400");
+ }
+ if libressl_version >= 0x4_01_00_00_0 {
+ cfgs.push("libressl410");
+ }
} else {
let openssl_version = openssl_version.unwrap();
diff --git a/vendor/openssl-sys-0.9.92/build/main.rs b/vendor/openssl-sys-0.9.92/build/main.rs
index 21ccf3d0..2b06ee0f 100644
--- a/vendor/openssl-sys-0.9.92/build/main.rs
+++ b/vendor/openssl-sys-0.9.92/build/main.rs
@@ -273,6 +273,14 @@ See rust-openssl documentation for more information:
(3, 7, 1) => ('3', '7', '1'),
(3, 7, _) => ('3', '7', 'x'),
(3, 8, 0) => ('3', '8', '0'),
+ (3, 8, 1) => ('3', '8', '1'),
+ (3, 8, _) => ('3', '8', 'x'),
+ (3, 9, 0) => ('3', '9', '0'),
+ (3, 9, _) => ('3', '9', 'x'),
+ (4, 0, 0) => ('4', '0', '0'),
+ (4, 0, _) => ('4', '0', 'x'),
+ (4, 1, 0) => ('4', '1', '0'),
+ (4, 1, _) => ('4', '1', 'x'),
_ => version_error(),
};
@@ -315,7 +323,7 @@ fn version_error() -> ! {
"
This crate is only compatible with OpenSSL (version 1.0.1 through 1.1.1, or 3.0.0), or LibreSSL 2.5
-through 3.8.0, but a different version of OpenSSL was found. The build is now aborting
+through 4.1.x, but a different version of OpenSSL was found. The build is now aborting
due to this version mismatch.
"
|