diff --git a/ChangeLog b/ChangeLog index a355ca5d20..b450a193a4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Jul 27 16:41:15 2006 Yukihiro Matsumoto + + * ext/openssl/ossl.h: move inclusion point to shut up + Solaris compiler. [ruby-core:08114] + Wed Jul 26 22:20:59 2006 Yukihiro Matsumoto * configure.in: add support for as and ASFLAGS. [ruby-dev:29138] diff --git a/ext/openssl/ossl.h b/ext/openssl/ossl.h index 73e7246c46..c0325229c1 100644 --- a/ext/openssl/ossl.h +++ b/ext/openssl/ossl.h @@ -17,6 +17,15 @@ extern "C" { #endif +/* +* OpenSSL has defined RFILE and Ruby has defined RFILE - so undef it! +*/ +#if defined(RFILE) /*&& !defined(OSSL_DEBUG)*/ +# undef RFILE +#endif +#include +#include + /* * Check the OpenSSL version * The only supported are: @@ -59,15 +68,6 @@ extern "C" { # undef OpenFile #endif -/* - * OpenSSL has defined RFILE and Ruby has defined RFILE - so undef it! - */ -#if defined(RFILE) /*&& !defined(OSSL_DEBUG)*/ -# undef RFILE -#endif -#include -#include - /* * Common Module */