Bug 1888590 - Mark some subtests on trusted-types-event-handlers.html as failing...
[gecko.git] / third_party / rust / khronos-egl / build.rs
blob420a5fff905d001ff82ed9cf1f8bd1123217fb16
1 #[cfg(all(feature = "static", not(feature = "no-pkg-config")))]
2 extern crate pkg_config;
4 fn main() {
5         #[cfg(all(feature = "static", not(feature = "no-pkg-config")))]
6         {
7                 pkg_config::Config::new()
8                         .atleast_version("1")
9                         .probe("egl")
10                         .unwrap();
11         }