File tree Expand file tree Collapse file tree 3 files changed +15
-9
lines changed Expand file tree Collapse file tree 3 files changed +15
-9
lines changed Original file line number Diff line number Diff line change
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
+
1
7
Sat Jan 17 12:13:10 2009 Yukihiro Matsumoto <matz@ruby-lang.org>
2
8
3
9
* random.c (Init_Random): always initialize seed.
Original file line number Diff line number Diff line change @@ -535,7 +535,7 @@ AC_CHECK_FUNCS(ftello)
535
535
# http://sources.redhat.com/ml/libc-hacker/2005-08/msg00008.html
536
536
# Debian GNU/Linux Etch's libc6.1 2.3.6.ds1-13etch5 has this problem.
537
537
# 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 ,
539
539
[AC_TRY_RUN([
540
540
#include <math.h>
541
541
int
@@ -545,10 +545,10 @@ main()
545
545
return 0;
546
546
}
547
547
],
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
552
552
yes) ac_cv_func_erf=no;;
553
553
esac
554
554
Original file line number Diff line number Diff line change 1
1
#define RUBY_VERSION "1.8.6"
2
- #define RUBY_RELEASE_DATE "2009-01-17 "
2
+ #define RUBY_RELEASE_DATE "2009-01-19 "
3
3
#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
6
6
7
7
#define RUBY_VERSION_MAJOR 1
8
8
#define RUBY_VERSION_MINOR 8
9
9
#define RUBY_VERSION_TEENY 6
10
10
#define RUBY_RELEASE_YEAR 2009
11
11
#define RUBY_RELEASE_MONTH 1
12
- #define RUBY_RELEASE_DAY 17
12
+ #define RUBY_RELEASE_DAY 19
13
13
14
14
#ifdef RUBY_EXTERN
15
15
RUBY_EXTERN const char ruby_version [];
You can’t perform that action at this time.
0 commit comments