DO NOT REPLY [Bug 11310] New: - #include <ssl.h> s/b #include <openssl/ssl.h> 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 s/b #include
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: bugs@httpd.apache.org
ReportedBy: creitzel@rcn.com
The VC6 mod_ssl build doesn't work unless I do one of two things:
- 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: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org
Received on Tue Jul 30 22:17:59 2002
This archive was generated by hypermail 2.1.8
: Wed Aug 23 2006 - 16:43:45 EDT
|