Skip to content

Commit c6e73d2

Browse files
committed
merge revision(s) 16677:
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_5@17345 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent ef977df commit c6e73d2

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

ChangeLog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Sun Jun 15 23:31:10 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
2+
3+
* ext/zlib/extconf.rb: search zlib1, and regard mswin32 later than VC6
4+
as WIN32. [ruby-core:16984]
5+
6+
17
Sun Jun 15 23:27:31 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
28

39
* marshal.c (w_object, marshal_dump, r_object0, marshal_load): search

ext/zlib/extconf.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
dir_config 'zlib'
1111

1212

13-
if %w'z libz zlib zdll'.find {|z| have_library(z, 'deflateReset')} and
13+
if %w'z libz zlib1 zlib zdll'.find {|z| have_library(z, 'deflateReset')} and
1414
have_header('zlib.h') then
1515

1616
defines = []
@@ -22,7 +22,7 @@
2222
os_code = 'AMIGA'
2323
when /\Aos2[\-_]emx\z/ then
2424
os_code = 'OS2'
25-
when 'mswin32', 'mingw32', 'bccwin32' then
25+
when /mswin|mingw|bccwin/ then
2626
# NOTE: cygwin should be regarded as Unix.
2727
os_code = 'WIN32'
2828
else

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define RUBY_RELEASE_DATE "2008-06-15"
33
#define RUBY_VERSION_CODE 185
44
#define RUBY_RELEASE_CODE 20080615
5-
#define RUBY_PATCHLEVEL 219
5+
#define RUBY_PATCHLEVEL 220
66

77
#define RUBY_VERSION_MAJOR 1
88
#define RUBY_VERSION_MINOR 8

0 commit comments

Comments
 (0)