##// END OF EJS Templates
revlogv2: make sure bundling pick a compatible bundle format...
revlogv2: make sure bundling pick a compatible bundle format Before this change, revlog-v2 repository where bundled using the incompatible "v1" format. Differential Revision: https://phab.mercurial-scm.org/D10802

File last commit:

r45179:1f5ab1a9 default
r48133:dc380056 default
Show More
build.rs
7 lines | 155 B | application/rls-services+xml | RustLexer
Yuya Nishihara
rust-chg: add function to send fds via domain socket...
r40005 fn main() {
cc::Build::new()
.warnings(true)
.file("src/sendfds.c")
Yuya Nishihara
rust-chg: extract signal handlers from chg/procutil.c...
r40154 .file("src/sighandlers.c")
Yuya Nishihara
rust-chg: add function to send fds via domain socket...
r40005 .compile("procutil");
}