summaryrefslogtreecommitdiff
path: root/systest
diff options
context:
space:
mode:
authorStephen Demos <stphndemos@gmail.com>2017-08-08 11:57:46 -0700
committerStephen Demos <stphndemos@gmail.com>2017-08-09 12:26:45 -0700
commitcaf7b8ecbc845739e9ef67a66ff145563b0ae1aa (patch)
treedbc1aa454de9b2662a89a0e1e8bbd1029e0cf104 /systest
parentf34af836533dbe85a10b115ab1259d2ebeb331c4 (diff)
downloadrust-openssl-caf7b8ecbc845739e9ef67a66ff145563b0ae1aa.zip
added cms decryption
Diffstat (limited to 'systest')
-rw-r--r--systest/build.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/systest/build.rs b/systest/build.rs
index 5244ea11..700d8565 100644
--- a/systest/build.rs
+++ b/systest/build.rs
@@ -56,7 +56,8 @@ fn main() {
.header("openssl/pkcs12.h")
.header("openssl/bn.h")
.header("openssl/aes.h")
- .header("openssl/ocsp.h");
+ .header("openssl/ocsp.h")
+ .header("openssl/cms.h");
cfg.type_name(|s, is_struct| {
// Add some `*` on some callback parameters to get function pointer to
// typecheck in C, especially on MSVC.