##// END OF EJS Templates
extensions: prevent a crash on py3 with a `minimumhgversion` str value...
extensions: prevent a crash on py3 with a `minimumhgversion` str value The expectation is that this field is bytes, but unported extensions are a thing and it shouldn't explode on a bad value. We already do this transformation in the version reporting mechanism. Differential Revision: https://phab.mercurial-scm.org/D11476

File last commit:

r45179:1f5ab1a9 default
r48829:5caec48d default
Show More
build.rs
7 lines | 155 B | application/rls-services+xml | RustLexer
fn main() {
cc::Build::new()
.warnings(true)
.file("src/sendfds.c")
.file("src/sighandlers.c")
.compile("procutil");
}