File: build.rs

package info (click to toggle)
suricata 1%3A6.0.10-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 185,832 kB
  • sloc: ansic: 360,150; python: 7,385; sh: 4,628; makefile: 1,377; perl: 867
file content (13 lines) | stat: -rw-r--r-- 372 bytes parent folder | download | duplicates (38)
1
2
3
4
5
6
7
8
9
10
11
12
13
extern crate autocfg;

use std::env;

fn main() {
    // If the "i128" feature is explicity requested, don't bother probing for it.
    // It will still cause a build error if that was set improperly.
    if env::var_os("CARGO_FEATURE_I128").is_some() || autocfg::new().probe_type("i128") {
        autocfg::emit("has_i128");
    }

    autocfg::rerun_path("build.rs");
}