Skip to content

Commit f48ae0d

Browse files
committed
merge revision(s) 44717:
* configure.in: define USE_BUILTIN_FRAME_ADDRESS on x86_64 even if __builtin_frame_address is not used now. By this, FreeBSD's clang can build ruby 1.8, and alloca(1) doesn't work on it. git-svn-id: svn+ssh://svn.ruby-lang.org/ruby/branches/ruby_1_8_7@44719 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent b912e1d commit f48ae0d

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

ChangeLog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
Tue Jan 28 03:59:15 2014 NARUSE, Yui <naruse@ruby-lang.org>
2+
3+
* configure.in: define USE_BUILTIN_FRAME_ADDRESS on x86_64
4+
even if __builtin_frame_address is not used now.
5+
By this, FreeBSD's clang can build ruby 1.8,
6+
and alloca(1) doesn't work on it.
7+
18
Fri Nov 22 12:43:52 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
29

310
* util.c (ruby_strtod): ignore too long fraction part, which does not

configure.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,7 @@ fi
144144

145145
case $target_cpu in
146146
i?86) frame_address=yes;;
147+
x86_64) frame_address=yes;;
147148
*) frame_address=no;;
148149
esac
149150
AC_ARG_ENABLE(frame-address,

version.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
#define RUBY_VERSION "1.8.7"
2-
#define RUBY_RELEASE_DATE "2013-12-23"
2+
#define RUBY_RELEASE_DATE "2014-01-28"
33
#define RUBY_VERSION_CODE 187
4-
#define RUBY_RELEASE_CODE 20131223
5-
#define RUBY_PATCHLEVEL 375
4+
#define RUBY_RELEASE_CODE 20140128
5+
#define RUBY_PATCHLEVEL 376
66

77
#define RUBY_VERSION_MAJOR 1
88
#define RUBY_VERSION_MINOR 8
99
#define RUBY_VERSION_TEENY 7
10-
#define RUBY_RELEASE_YEAR 2013
11-
#define RUBY_RELEASE_MONTH 12
12-
#define RUBY_RELEASE_DAY 23
10+
#define RUBY_RELEASE_YEAR 2014
11+
#define RUBY_RELEASE_MONTH 1
12+
#define RUBY_RELEASE_DAY 28
1313

1414
#ifdef RUBY_EXTERN
1515
RUBY_EXTERN const char ruby_version[];

0 commit comments

Comments
 (0)