cvs blame tells me for modules/ssl/mod_ssl.c:
1.48 (dougm 12-Mar-02): static int ssl_hook_pre_config(apr_pool_t *pconf,
1.48 (dougm 12-Mar-02): apr_pool_t *plog,
1.48 (dougm 12-Mar-02): apr_pool_t *ptemp)
1.5 (rse 05-May-01): {
1.80 (wrowe 30-May-03): /* We must register the library in full, to ensure our
configuration
1.80 (wrowe 30-May-03): * code can successfully test the SSL environment.
1.80 (wrowe 30-May-03): */
1.76 (wrowe 13-Jan-03): CRYPTO_malloc_init();
1.80 (wrowe 30-May-03): ERR_load_crypto_strings();
1.83 (wrowe 02-Jun-03): SSL_library_init();
1.80 (wrowe 30-May-03): #if HAVE_ENGINE_LOAD_BUILTIN_ENGINES
1.80 (wrowe 30-May-03): ENGINE_load_builtin_engines();
1.80 (wrowe 30-May-03): #endif
1.80 (wrowe 30-May-03): OPENSSL_load_builtin_modules();
1.80 (wrowe 30-May-03): SSL_load_error_strings();
Now the problem is, I have no OPENSSL_load_builtin_modules() anywhere in
OpenSSL 0.9.6g 9 Aug 2002. Possibly a configure test should be added in the
same way that one was added for ENGINE_load_builtin_engines()?
Cheers,
Patrick