##// END OF EJS Templates
rhg: add config defaults to configitems.toml...
rhg: add config defaults to configitems.toml This will allow us to use the same default config mechanic as the rest of the code.

File last commit:

r45179:1f5ab1a9 default
r51660:50334ab5 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");
}