Codebase list rust-safemem / f0bf2ec
decimal prepare upload Sylvestre Ledru 3 years ago
2 changed file(s) with 16 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 Index: decimal/build.rs
1 ===================================================================
2 --- decimal.orig/build.rs
3 +++ decimal/build.rs
4 @@ -1,6 +1,10 @@
5 extern crate cc;
6 +use std::env;
7
8 fn main() {
9 +
10 + println!("dh-cargo:deb-built-using=decNumber=1={}", env::var("CARGO_MANIFEST_DIR").unwrap());
11 +
12 let litend = if cfg!(target_endian = "little") {
13 "1"
14 } else {