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> ------- Additional Comments From [EMAIL PROTECTED] 2003-03-12 16:07 ------- Hi Mahdu, The convention with OpenSSL and many other packages is to have a top-level include directory. It avoids file name conflicts and just makes the code clearer. Thus, the appropriate directory to have in the INCLUDE path is $OPENSSL_HOME/include and the syntax in your source code should be #include <openssl/somefile.h> NOT #include <somefile.h> This way a) it will build on MSVC and b) I can use the same INCLUDE setting for my own OpenSSL code as Apache 2. Thanks Charlie --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
