diff options
author | Benjamin Saunders <ben.e.saunders@gmail.com> | 2018-03-04 22:04:41 -0800 |
---|---|---|
committer | Benjamin Saunders <ben.e.saunders@gmail.com> | 2018-03-05 17:45:08 -0800 |
commit | 38f4705b1dd1b0851944ee799e11c6011dc7b807 (patch) | |
tree | f9edd5464390ffc186ae7a93a467e47dbffb09ad /systest | |
parent | 5760ded1cecaddbf63e9f035ac63777a10380234 (diff) | |
download | rust-openssl-38f4705b1dd1b0851944ee799e11c6011dc7b807.zip |
FFI for OpenSSL 1.1.1 custom extension support
Diffstat (limited to 'systest')
-rw-r--r-- | systest/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/systest/build.rs b/systest/build.rs index 76d0a950..a3aa3386 100644 --- a/systest/build.rs +++ b/systest/build.rs @@ -109,7 +109,7 @@ fn main() { cfg.skip_signededness(|s| { s.ends_with("_cb") || s.ends_with("_CB") || s.ends_with("_cb_fn") || s.starts_with("CRYPTO_") || s == "PasswordCallback" - || s.ends_with("_cb_func") + || s.ends_with("_cb_func") || s.ends_with("_cb_ex") }); cfg.field_name(|_s, field| { if field == "type_" { |