##// END OF EJS Templates
config: add experimental argument to the config registrar...
config: add experimental argument to the config registrar Until now, there are almost 28 config items which are considered as `experimental` but, not present in the `experimental` section of the registrar. This patch adds an `experimental` argument to the config registrar to mark such config items. Differential Revision: https://phab.mercurial-scm.org/D6728

File last commit:

r40154:cd490ac9 default
r43005:a11fd395 default
Show More
build.rs
9 lines | 173 B | application/rls-services+xml | RustLexer
Yuya Nishihara
rust-chg: add function to send fds via domain socket...
r40005 extern crate cc;
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");
}