Skip to content

Commit 947308e

Browse files
committed
Skip verifying CURLOPT_PIPEWAIT on older versions
1 parent 9ecd8c8 commit 947308e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

systest/build.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,12 @@ fn main() {
6868
});
6969

7070
cfg.skip_const(move |s| {
71+
if version < 61 {
72+
match s {
73+
"CURLOPT_PIPEWAIT" => return true,
74+
_ => {}
75+
}
76+
}
7177
if version < 60 {
7278
match s {
7379
"CURLVERSION_FIFTH" |

0 commit comments

Comments
 (0)