aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--include/ruby/missing.h3
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 24d607fad9..385b4407f9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Wed Mar 13 14:38:53 2013 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
+
+ * include/ruby/missing.h (struct timespec): include <sys/time.h>
+
Wed Mar 13 13:54:45 2013 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
* configure.in: check struct timeval exist or not.
diff --git a/include/ruby/missing.h b/include/ruby/missing.h
index 4a19cc7847..616e699ad5 100644
--- a/include/ruby/missing.h
+++ b/include/ruby/missing.h
@@ -42,6 +42,9 @@ struct timeval {
#endif
#if !defined(HAVE_STRUCT_TIMESPEC)
+# if defined(HAVE_SYS_TIME_H)
+# include <sys/time.h>
+# endif
struct timespec {
time_t tv_sec; /* seconds */
long tv_nsec; /* nanoseconds */