Skip to content

Commit 9bde13e

Browse files
committed
merge revision(s) 18664:
* configure.in (rb_cv_broken_glibc_ia64_erfc): renamed from rb_broken_glibc_ia64_erfc. [ruby-core:18228] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_6@21668 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 912904e commit 9bde13e

File tree

3 files changed

+15
-9
lines changed

3 files changed

+15
-9
lines changed

ChangeLog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Mon Jan 19 18:24:13 2009 Tanaka Akira <akr@fsij.org>
2+
3+
* configure.in (rb_cv_broken_glibc_ia64_erfc): renamed from
4+
rb_broken_glibc_ia64_erfc.
5+
[ruby-core:18228]
6+
17
Sat Jan 17 12:13:10 2009 Yukihiro Matsumoto <matz@ruby-lang.org>
28

39
* random.c (Init_Random): always initialize seed.

configure.in

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ AC_CHECK_FUNCS(ftello)
535535
# http://sources.redhat.com/ml/libc-hacker/2005-08/msg00008.html
536536
# Debian GNU/Linux Etch's libc6.1 2.3.6.ds1-13etch5 has this problem.
537537
# Debian GNU/Linux Lenny's libc6.1 2.7-10 has no problem.
538-
AC_CACHE_CHECK(for broken erfc of glibc-2.3.6 on IA64, rb_broken_glibc_ia64_erfc,
538+
AC_CACHE_CHECK(for broken erfc of glibc-2.3.6 on IA64, rb_cv_broken_glibc_ia64_erfc,
539539
[AC_TRY_RUN([
540540
#include <math.h>
541541
int
@@ -545,10 +545,10 @@ main()
545545
return 0;
546546
}
547547
],
548-
rb_broken_glibc_ia64_erfc=no,
549-
rb_broken_glibc_ia64_erfc=yes,
550-
rb_broken_glibc_ia64_erfc=no)])
551-
case $rb_broken_glibc_ia64_erfc in
548+
rb_cv_broken_glibc_ia64_erfc=no,
549+
rb_cv_broken_glibc_ia64_erfc=yes,
550+
rb_cv_broken_glibc_ia64_erfc=no)])
551+
case $rb_cv_broken_glibc_ia64_erfc in
552552
yes) ac_cv_func_erf=no;;
553553
esac
554554

version.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
#define RUBY_VERSION "1.8.6"
2-
#define RUBY_RELEASE_DATE "2009-01-17"
2+
#define RUBY_RELEASE_DATE "2009-01-19"
33
#define RUBY_VERSION_CODE 186
4-
#define RUBY_RELEASE_CODE 20090117
5-
#define RUBY_PATCHLEVEL 302
4+
#define RUBY_RELEASE_CODE 20090119
5+
#define RUBY_PATCHLEVEL 303
66

77
#define RUBY_VERSION_MAJOR 1
88
#define RUBY_VERSION_MINOR 8
99
#define RUBY_VERSION_TEENY 6
1010
#define RUBY_RELEASE_YEAR 2009
1111
#define RUBY_RELEASE_MONTH 1
12-
#define RUBY_RELEASE_DAY 17
12+
#define RUBY_RELEASE_DAY 19
1313

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

0 commit comments

Comments
 (0)