From 9a8b21446ea9edf55272d5e048d97f1c94640e9e Mon Sep 17 00:00:00 2001 From: naruse Date: Fri, 18 Mar 2016 19:06:32 +0000 Subject: [PATCH] * configure.in (rb_cv_member_struct_tm_tm_gmtoff): For Linux (glibc) define _BSD_SOURCE for time.h to define struct tm.tm_gmtoff. * time.c: define _BSD_SOURCE at the top. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54186 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 7 +++++++ configure.in | 7 ++++++- time.c | 1 + 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 256e8b3546..4301215f0d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Sat Mar 19 03:53:31 2016 NARUSE, Yui + + * configure.in (rb_cv_member_struct_tm_tm_gmtoff): For Linux (glibc) + define _BSD_SOURCE for time.h to define struct tm.tm_gmtoff. + + * time.c: define _BSD_SOURCE at the top. + Sat Mar 19 03:00:50 2016 Rei Odaira * test/-ext-/time/test_new.rb (test_timespec_new): change a gmtoff diff --git a/configure.in b/configure.in index 2442e19d87..a96ed71344 100644 --- a/configure.in +++ b/configure.in @@ -2609,7 +2609,12 @@ if test "$use_setreuid" = yes; then fi AC_STRUCT_TIMEZONE AC_CACHE_CHECK(for struct tm.tm_gmtoff, rb_cv_member_struct_tm_tm_gmtoff, - [AC_TRY_COMPILE([@%:@include ], + [AC_TRY_COMPILE([ + @%:@include +@%:@ifndef _BSD_SOURCE +@%:@define _BSD_SOURCE 1 +@%:@endif + ], [struct tm t; t.tm_gmtoff = 3600;], [rb_cv_member_struct_tm_tm_gmtoff=yes], [rb_cv_member_struct_tm_tm_gmtoff=no])]) diff --git a/time.c b/time.c index d3f0ca2171..b65d6e5c85 100644 --- a/time.c +++ b/time.c @@ -9,6 +9,7 @@ **********************************************************************/ +#define _BSD_SOURCE #include "internal.h" #include #include