fix: defer volume lock to after setup, fix sighandler cast comment, check pkg-config status

This commit is contained in:
Asger Geel Weirsøe
2026-05-06 11:58:21 +02:00
parent f93ca6267c
commit abf8aef1ef
3 changed files with 17 additions and 8 deletions

View File

@@ -37,6 +37,7 @@ fn main() {
.args(["--cflags", "gio-2.0"])
.output()
.expect("pkg-config not found");
assert!(gio_cflags.status.success(), "pkg-config --cflags gio-2.0 failed");
let gio_cflags_str = String::from_utf8(gio_cflags.stdout).unwrap();
let mut build = cc::Build::new();