We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cc2850f + e12ee79 commit 2ed3c60Copy full SHA for 2ed3c60
openssl-sys/src/handwritten/stack.rs
@@ -3,6 +3,8 @@ use libc::*;
3
cfg_if! {
4
if #[cfg(ossl110)] {
5
pub enum OPENSSL_STACK {}
6
+ } else if #[cfg(libressl390)] {
7
+ pub enum _STACK {}
8
} else {
9
#[repr(C)]
10
pub struct _STACK {
openssl-sys/src/macros.rs
@@ -58,7 +58,7 @@ macro_rules! cfg_if {
58
macro_rules! stack {
59
($t:ident) => {
60
61
- if #[cfg(ossl110)] {
+ if #[cfg(any(ossl110, libressl390))] {
62
pub enum $t {}
63
64
0 commit comments