1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: have oxrocksdb-sys crate signal its licensing constraints
Author: Jonas Smedegaard <dr@jones.dk>
Forwarded: not-needed
Last-Update: 2023-10-28
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/oxrocksdb-sys/build.rs
+++ b/oxrocksdb-sys/build.rs
@@ -23,6 +23,7 @@
fn bindgen_rocksdb_api(includes: &[PathBuf]) {
println!("cargo:rerun-if-changed=api/");
+ println!("dh-cargo:deb-built-using=oxrocksdb_api=0={}", var("CARGO_MANIFEST_DIR").unwrap());
let mut builder = bindgen::Builder::default();
for include in includes {
|