From: "G�nter Knauf" <[EMAIL PROTECTED]>
Sent: Friday, August 24, 2001 6:26 AM
>Hi,
>I've just compiled mod_ssl on Win32 and I'm not happy with the removed 'openssl/'
>path because now I have to include a second path: one to ./inc32/openssl and as
>before ./inc32 self because all openssl files try to find their includes with
>./openssl prefix...(as mod_ssl.h before!)
Evidently, you don't have inc32 in your systemwide path.
The answer is to include both inc32 and inc32/openssl in our build system. This
is preferable to some convoluted block like;
#ifdef OPENSSL_VERSION
#include <OpenSSL/foohdr.h>
.
.
.
.
.
.
.
.
#elif defined(SSLEAY_VERSION)
#include "ssl/foohdr.h"
.
.
.
.
.
.
.
.
#elif defined(RSA_VERSION)
#include "ssl/foohdr.h"
.
.
.
.
.
.
.
.
.................
and so on (you get the picture.)
Bill