File tree Expand file tree Collapse file tree 4 files changed +14
-5
lines changed Expand file tree Collapse file tree 4 files changed +14
-5
lines changed Original file line number Diff line number Diff line change
1
+ Sat Dec 24 18:58:14 2005 Yukihiro Matsumoto <matz@ruby-lang.org>
2
+
3
+ * stable version 1.8.4 released.
4
+
5
+ Fri Dec 23 10:30:23 2005 Yukihiro Matsumoto <matz@ruby-lang.org>
6
+
7
+ * ext/digest/sha2/sha2.c (ULL): support AIX C. a patch from
8
+ Kailden <kailden at gmail.com>. [ruby-core:06984]
9
+
1
10
Wed Dec 21 16:53:06 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
2
11
3
12
* file.c (w32_io_info): should return handle because FileIndex is
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ typedef uint8_t sha2_byte; /* Exactly 1 byte */
67
67
typedef uint32_t sha2_word32 ; /* Exactly 4 bytes */
68
68
typedef uint64_t sha2_word64 ; /* Exactly 8 bytes */
69
69
70
- #if defined(__GNUC__ ) || defined(_HPUX_SOURCE )
70
+ #if defined(__GNUC__ ) || defined(_HPUX_SOURCE ) || defined( __IBMC__ )
71
71
#define ULL (number ) number##ULL
72
72
#else
73
73
#define ULL (number ) (uint64_t)(number)
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ def test_exit_action
50
50
assert_nothing_raised ( "[ruby-dev:26128]" ) {
51
51
Process . kill ( :USR1 , pid )
52
52
begin
53
- Timeout . timeout ( 1 ) {
53
+ Timeout . timeout ( 10 ) {
54
54
Process . waitpid pid
55
55
}
56
56
rescue Timeout ::Error
Original file line number Diff line number Diff line change 1
1
#define RUBY_VERSION "1.8.4"
2
- #define RUBY_RELEASE_DATE "2005-12-22 "
2
+ #define RUBY_RELEASE_DATE "2005-12-24 "
3
3
#define RUBY_VERSION_CODE 184
4
- #define RUBY_RELEASE_CODE 20051222
4
+ #define RUBY_RELEASE_CODE 20051224
5
5
6
6
#define RUBY_VERSION_MAJOR 1
7
7
#define RUBY_VERSION_MINOR 8
8
8
#define RUBY_VERSION_TEENY 4
9
9
#define RUBY_RELEASE_YEAR 2005
10
10
#define RUBY_RELEASE_MONTH 12
11
- #define RUBY_RELEASE_DAY 22
11
+ #define RUBY_RELEASE_DAY 24
12
12
13
13
RUBY_EXTERN const char ruby_version [];
14
14
RUBY_EXTERN const char ruby_release_date [];
You can’t perform that action at this time.
0 commit comments