Skip to content

Commit b2638c9

Browse files
committed
merge revision(s) 58084: [Backport #13361]
configure.in: syscall is deprecated on macOS * configure.in: syscall is no longer supported on macOS since 10.12. [ruby-core:80300] [Bug #13361] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_2@58193 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent b411090 commit b2638c9

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

ChangeLog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
Tue Mar 28 15:39:26 2017 Nobuyoshi Nakada <nobu@ruby-lang.org>
2+
3+
configure.in: syscall is deprecated on macOS
4+
5+
* configure.in: syscall is no longer supported on macOS since 10.12.
6+
[Bug #13361]
7+
18
Mon Mar 27 01:41:37 2017 NARUSE, Yui <naruse@ruby-lang.org>
29

310
* configure.in: improve ICC (Intel C Compiler) support.

configure.in

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1026,6 +1026,12 @@ AS_CASE(["$target_os"],
10261026
],
10271027
[macosx_10_5=yes], [macosx_10_5=no])
10281028
AC_MSG_RESULT($macosx_10_5)
1029+
AS_IF([test "${target_os@%:@darwin}" -ge 16], [
1030+
ac_cv_func___syscall=no
1031+
ac_cv_func_syscall=no
1032+
ac_cv_header_sys_syscall_h=no
1033+
ac_cv_header_syscall_h=no
1034+
])
10291035
if test $macosx_10_5 = yes; then
10301036
ac_cv_func_getcontext=no
10311037
ac_cv_func_setcontext=no

version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#define RUBY_VERSION "2.2.7"
2-
#define RUBY_RELEASE_DATE "2017-03-27"
3-
#define RUBY_PATCHLEVEL 469
2+
#define RUBY_RELEASE_DATE "2017-03-28"
3+
#define RUBY_PATCHLEVEL 470
44

55
#define RUBY_RELEASE_YEAR 2017
66
#define RUBY_RELEASE_MONTH 3
7-
#define RUBY_RELEASE_DAY 27
7+
#define RUBY_RELEASE_DAY 28
88

99
#include "ruby/version.h"
1010

0 commit comments

Comments
 (0)