File: build.rs

package info (click to toggle)
rust-libnghttp2-sys 0.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 332 kB
  • sloc: makefile: 8
file content (7 lines) | stat: -rw-r--r-- 123 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
extern crate pkg_config;

pub fn main() {
    if pkg_config::probe_library("libnghttp2").is_ok() {
        return;
    }
}