gecko-dev/third_party/rust/libdbus-sys/build.rs
Paul Adenot 6af26dcc3d Bug 1429847 - Vendor rust, to pick up the changes. r=kinetik
Differential Revision: https://phabricator.services.mozilla.com/D30907

--HG--
extra : moz-landing-system : lando
2019-06-21 19:51:22 +00:00

8 lines
279 B
Rust

extern crate pkg_config;
fn main() {
// See https://github.com/joshtriplett/metadeps/issues/9 for why we don't use
// metadeps here, but instead keep this manually in sync with Cargo.toml.
pkg_config::Config::new().atleast_version("1.6").probe("dbus-1").unwrap();
}