1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

Roll away the SSL_EXPERIMENTAL_ENGINE test in favor of testing for the

ENGINE_init() function in config.m4, and rely on HAVE_ENGINE_INIT instead.

Reviewed by: Ben Laurie (concept)


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@99919 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
William A. Rowe Jr
2003-05-19 14:48:47 +00:00
parent aab043443e
commit a5708f15e6
6 changed files with 8 additions and 20 deletions

View File

@@ -64,19 +64,6 @@
#ifndef __MOD_SSL_H__
#define __MOD_SSL_H__
/*
* Optionally enable the experimental stuff, but allow the user to
* override the decision which experimental parts are included by using
* CFLAGS="-DSSL_EXPERIMENTAL_xxxx_IGNORE".
*/
#ifdef SSL_EXPERIMENTAL
#ifdef SSL_ENGINE
#ifndef SSL_EXPERIMENTAL_ENGINE_IGNORE
#define SSL_EXPERIMENTAL_ENGINE
#endif
#endif
#endif /* SSL_EXPERIMENTAL */
/*
* Power up our brain...
*/
@@ -414,7 +401,7 @@ typedef struct {
void *pTmpKeys[SSL_TMP_KEY_MAX];
apr_hash_t *tPublicCert;
apr_hash_t *tPrivateKey;
#ifdef SSL_EXPERIMENTAL_ENGINE
#ifdef HAVE_ENGINE_INIT
char *szCryptoDevice;
#endif
struct {