forked from stratis-storage/stratisd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.rs
39 lines (32 loc) · 1.3 KB
/
build.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
#[cfg(feature = "systemd_compat")]
use std::{env, path::PathBuf};
#[cfg(feature = "systemd_compat")]
use bindgen::Builder;
use pkg_config::Config;
fn main() {
if let Err(e) = Config::new().atleast_version("2.3.0").find("libcryptsetup") {
panic!("At least version 2.3.0 of cryptsetup is required to compile stratisd: {e}");
}
if let Err(e) = Config::new().atleast_version("2.32.0").find("blkid") {
panic!("At least version 2.32.0 of blkid is required to compile stratisd: {e}");
}
#[cfg(feature = "systemd_compat")]
{
let bindings = Builder::default()
.header_contents(
"systemd-header.h",
"#include <systemd/sd-daemon.h>\n#include <systemd/sd-journal.h>",
)
.generate()
.expect("Could not generate bindings for systemd");
let mut path = PathBuf::from(env::var("OUT_DIR").unwrap());
path.push("bindings.rs");
bindings
.write_to_file(&path)
.expect("Failed to write bindings to file");
println!("cargo:rustc-link-lib=systemd");
}
}