diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-03-19 21:28:39 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-03-19 21:28:39 +0000 |
commit | de11f5e53ae5767e663647edeb31816c07dbc10b (patch) | |
tree | 8071a9aa611236d4df4d8cf3fc8cd8708a012f36 | |
parent | b125e8e23a0212dba4cc3c19a2b744c2241b74e1 (diff) |
make the ENGINE depend on the USE_SSLEAY define too
-rw-r--r-- | lib/urldata.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/urldata.h b/lib/urldata.h index f40fdef60..89aa50991 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -778,7 +778,7 @@ struct SessionHandle { struct UrlState state; /* struct for fields used for state info and other dynamic purposes */ struct PureInfo info; /* stats, reports and info data */ -#ifdef HAVE_OPENSSL_ENGINE_H +#if defined(USE_SSLEAY) && defined(HAVE_OPENSSL_ENGINE_H) ENGINE* engine; #endif /* USE_SSLEAY */ }; |