mån 2009-09-14 klockan 14:53 +1200 skrev Amos Jeffries: > > Proposed fix: Have src/ssl_support.h include et/com_err.h in an extern > > "C" wrapping before OpenSSL includes...
> So... does it actually require the extern-C ? com_err.h yes. It's a C header with no built-in C++ shielding, which means any prototypes defined there will mess things up as C++ will process them as C++ type-dependent prototypes, causinglinking to fail as "C" error_message() is a different linking symbol from "C++" error_message(long). Regards Henrik
