aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-27 16:15:21 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-27 16:15:21 +0000
commit5ce499ec9b19a6937400609f07b8da73d644e403 (patch)
treeb4eb48beb2191f4e64ed164975003a9f6b462046 /configure.in
parentb0c631684d6e09d2d660787ef1bb13006b7438d2 (diff)
downloadruby-5ce499ec9b19a6937400609f07b8da73d644e403.tar.gz
* time.c: define _DEFAULT_SOURCE because glibc 2.20 depracates
_BSD_SOURCE. https://sourceware.org/glibc/wiki/Release/2.20 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54802 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in7
1 files changed, 3 insertions, 4 deletions
diff --git a/configure.in b/configure.in
index feb1fffa8f..292e40ce1a 100644
--- a/configure.in
+++ b/configure.in
@@ -2649,10 +2649,9 @@ fi
AC_STRUCT_TIMEZONE
AC_CACHE_CHECK(for struct tm.tm_gmtoff, rb_cv_member_struct_tm_tm_gmtoff,
[AC_TRY_COMPILE([
- @%:@include <time.h>
-@%:@ifndef _BSD_SOURCE
-@%:@define _BSD_SOURCE 1
-@%:@endif
+@%:@define _BSD_SOURCE
+@%:@define _DEFAULT_SOURCE
+@%:@include <time.h>
],
[struct tm t; t.tm_gmtoff = 3600;],
[rb_cv_member_struct_tm_tm_gmtoff=yes],