aboutsummaryrefslogtreecommitdiffstats
path: root/include/ruby/defines.h
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-08-19 12:39:09 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-08-19 12:39:09 +0000
commitdbef5ecd7aa11e623a2ed9f99ffa77616b5ae1d1 (patch)
tree29cc430d576af0e319eb756c47f7138dd30cfa82 /include/ruby/defines.h
parent21ecf88ce0bb50dd2014a78e41c78db48f7b0bff (diff)
downloadruby-dbef5ecd7aa11e623a2ed9f99ffa77616b5ae1d1.tar.gz
* include/ruby/defines.h: Fix a compilation error with
i586-mingw32msvc-gcc of gcc-mingw32 package on Debian squeeze. ruby/missing.h should be included before include/ruby/win32.h because struct timespec, used in the clock_gettime declaration in include/ruby/win32.h, is defined in ruby/missing.h instead of system headers. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42625 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby/defines.h')
-rw-r--r--include/ruby/defines.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/ruby/defines.h b/include/ruby/defines.h
index cb3e21002a..3327e69123 100644
--- a/include/ruby/defines.h
+++ b/include/ruby/defines.h
@@ -65,6 +65,8 @@ extern "C" {
#include <setjmpex.h>
#endif
+#include "ruby/missing.h"
+
#define RUBY
#ifdef __cplusplus