Not an OpenSSL error. The fact that CRYPTO_cleanup_all_ex_data is also reported as implicitly declared, hints at a scenario where, for some reason, the listed source file (eXtl_tls.c) does not include the proper OpenSSL header files, such as ssl.h (for that SSL_OP_...)
It may be that the #includes are in there, but disabled by conditional compilation (#if ... #endif) (Note: on some Linux distros this can happen when OpenSSL package is installed, but the OpenSSL-dev package is not, resulting in some ./configure scripts detecting the OpenSSL binaries, but ignoring the fact they cannot access the OpenSSL header files as those are not installed on the system.) Anyway, you'll need to investigate why the OpenSSL headerfiles didn't make it into the compile, unfortunately. On Thu, Jun 4, 2009 at 1:08 PM, vicky <[email protected]> wrote: > Hi all : > > When I using make for other tool , I get the error msg as follows : > > eXtl_tls.c:125:3: warning: C++ style comments are not allowed in ISO C90 > > eXtl_tls.c:125:3: warning: (this will be reported only once per input file) > > eXtl_tls.c: In function 'tls_tl_free': > > eXtl_tls.c:131: warning: implicit declaration of function > 'CRYPTO_cleanup_all_ex_data' > > eXtl_tls.c:131: warning: nested extern declaration of > 'CRYPTO_cleanup_all_ex_data' > > eXtl_tls.c: In function 'initialize_client_ctx': > > eXtl_tls.c:368: error: 'SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION' > undeclared (first use in this function) > > eXtl_tls.c:368: error: (Each undeclared identifier is reported only once > > eXtl_tls.c:368: error: for each function it appears in.) > > eXtl_tls.c:368: error: 'SSL_OP_CIPHER_SERVER_PREFERENCE' undeclared (first > use in this function) > > eXtl_tls.c: In function 'initialize_server_ctx': > > eXtl_tls.c:439: error: 'SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION' > undeclared (first use in this function) > > eXtl_tls.c:439: error: 'SSL_OP_CIPHER_SERVER_PREFERENCE' undeclared (first > use in this function) > > > > it’s looks like is openssl error. > > Any ideas on how to solve this? > > > > > > Any help'd be greatly appreciated > > Cheers, > > Pinky -- Met vriendelijke groeten / Best regards, Ger Hobbelt -------------------------------------------------- web: http://www.hobbelt.com/ http://www.hebbut.net/ mail: [email protected] mobile: +31-6-11 120 978 -------------------------------------------------- ______________________________________________________________________ OpenSSL Project http://www.openssl.org User Support Mailing List [email protected] Automated List Manager [email protected]
