diff options
author | Doug MacEachern <dougm@apache.org> | 2002-03-27 18:02:56 +0100 |
---|---|---|
committer | Doug MacEachern <dougm@apache.org> | 2002-03-27 18:02:56 +0100 |
commit | aeb7f9eb0b7f8c8d80906d65a60c49e0d00ce5d3 (patch) | |
tree | 3a90143b2565a22fbe5b0cb2324fa95713209186 /modules/ssl/ssl_toolkit_compat.h | |
parent | This might be helpful to folks readong code and reading this document to unde... (diff) | |
download | apache2-aeb7f9eb0b7f8c8d80906d65a60c49e0d00ce5d3.tar.xz apache2-aeb7f9eb0b7f8c8d80906d65a60c49e0d00ce5d3.zip |
add configure checks for ssl functions:
-SSL_set_state: macro in OpenSSL, might be a function in a patched sslc
-SSL_set_cert_store: patch submitted to OpenSSL, might be applied to
OpenSSL or sslc
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94223 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/ssl/ssl_toolkit_compat.h')
-rw-r--r-- | modules/ssl/ssl_toolkit_compat.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/ssl/ssl_toolkit_compat.h b/modules/ssl/ssl_toolkit_compat.h index d5652a2733..6714857c40 100644 --- a/modules/ssl/ssl_toolkit_compat.h +++ b/modules/ssl/ssl_toolkit_compat.h @@ -78,9 +78,8 @@ #define modssl_PEM_read_bio_PrivateKey(b, k, cb, arg) \ PEM_read_bio_PrivateKey(b, k, cb) -/* XXX: add configure check */ #ifndef HAVE_SSL_SET_STATE -#define SSL_set_state(ssl, state) +#define SSL_set_state(ssl, state) /* XXX: should throw an error */ #endif #define modssl_set_cipher_list(ssl, l) \ |