DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11310>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11310

#include <ssl.h> s/b #include <openssl/ssl.h>

           Summary: #include <ssl.h> s/b #include <openssl/ssl.h>
           Product: Apache httpd-2.0
           Version: 2.0.39
          Platform: PC
        OS/Version: Windows NT/2K
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: mod_ssl
        AssignedTo: [email protected]
        ReportedBy: [EMAIL PROTECTED]


The VC6 mod_ssl build doesn't work unless I do one of two things:

1) Place both D:\code\3rdParty\openssl-0.9.6c\include AND
D:\code\3rdParty\openssl-0.9.6c\include\openssl in my include path.

or 

2) Update mod_ssl.h as follows:

/* OpenSSL headers */
#include <openssl/ssl.h>
#include <openssl/err.h>
#include <openssl/x509.h>
#include <openssl/pem.h>
#include <openssl/crypto.h>
#include <openssl/evp.h>
#include <openssl/rand.h>
#ifdef SSL_EXPERIMENTAL_ENGINE
#include <engine.h>   /* Not sure, <openssl/engine.h>?
#endif

#include "ssl_toolkit_compat.h"

#ifdef HAVE_SSL_X509V3_H
#include <openssl/x509v3.h>
#endif

Recommend the latter (#2) as this is the convention used by OpenSSL itself and, 
therefore, most OpenSSL apps.

Thanks,
Charlie

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to