static linking for snappy

This commit is contained in:
debris 2017-11-14 13:20:36 +01:00
parent 3cf52dac59
commit 4d7c31540e

View File

@ -24,7 +24,7 @@ const SNAPPY_OK: c_int = 0;
const SNAPPY_INVALID_INPUT: c_int = 1; const SNAPPY_INVALID_INPUT: c_int = 1;
const SNAPPY_BUFFER_TOO_SMALL: c_int = 2; const SNAPPY_BUFFER_TOO_SMALL: c_int = 2;
#[link(name = "snappy")] #[link(name = "snappy", kind = "static")]
extern { extern {
fn snappy_compress( fn snappy_compress(
input: *const c_char, input: *const c_char,