Skip to content

Commit

Permalink
undef stat only on windows to fix issues on AIX
Browse files Browse the repository at this point in the history
  • Loading branch information
tmm1 committed Oct 21, 2009
1 parent 16d8974 commit c9f6c5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/cmain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ See the file COPYING for complete licensing information.
We need to undef the stat to fix a build failure in evma_send_file_data_to_connection.
See http://groups.google.com/group/eventmachine/browse_thread/thread/fc60d9bb738ffc71
*/
#ifdef BUILD_FOR_RUBY
#if defined(BUILD_FOR_RUBY) && defined(OS_WIN32)
#undef stat
#endif

Expand Down

0 comments on commit c9f6c5e

Please sign in to comment.