Skip to content

Commit 4baa00d

Browse files
committed
* include/ruby/intern.h: should include sys/time.h for struct timeval
if it exists. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@40746 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent a5ed086 commit 4baa00d

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Wed May 15 01:06:26 2013 NAKAMURA Usaku <usa@ruby-lang.org>
2+
3+
* include/ruby/intern.h: should include sys/time.h for struct timeval
4+
if it exists.
5+
16
Wed May 15 00:23:07 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
27

38
* configure.in (warnflags): disable -Werror by default unless

include/ruby/intern.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ extern "C" {
3636
#include <sys/types.h>
3737
#endif
3838

39+
#if defined(HAVE_SYS_TIME_H)
40+
#include <sys/time.h>
41+
#endif
42+
3943
#include "ruby/st.h"
4044

4145
#if defined __GNUC__ && __GNUC__ >= 4

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#define RUBY_VERSION "1.9.3"
2-
#define RUBY_PATCHLEVEL 428
2+
#define RUBY_PATCHLEVEL 429
33

44
#define RUBY_RELEASE_DATE "2013-05-15"
55
#define RUBY_RELEASE_YEAR 2013

0 commit comments

Comments
 (0)