Safe Rust bindings for LMDB with encryption at rest
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
extern crate pkg_config;
|
|
|
|
extern crate gcc;
|
|
|
|
|
|
|
|
use std::env;
|
|
|
|
use std::path::PathBuf;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
|
|
|
let mut lmdb: PathBuf = PathBuf::from(&env::var("CARGO_MANIFEST_DIR").unwrap());
|
|
|
|
lmdb.push("lmdb");
|
|
|
|
lmdb.push("libraries");
|
|
|
|
lmdb.push("liblmdb");
|
|
|
|
|
|
|
|
let mut mdb: PathBuf = lmdb.clone();
|
|
|
|
let mut midl: PathBuf = lmdb.clone();
|
|
|
|
|
|
|
|
mdb.push("mdb.c");
|
|
|
|
midl.push("midl.c");
|
|
|
|
|
|
|
|
if !pkg_config::find_library("liblmdb").is_ok() {
|
|
|
|
gcc::compile_library("liblmdb.a",
|
|
|
|
&[(*mdb).to_str().unwrap(),
|
|
|
|
(*midl).to_str().unwrap()]);
|
|
|
|
}
|
|
|
|
}
|