diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-04-22 23:39:32 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-04-22 23:39:32 +0000 |
| commit | fe8a425101a83639379328fc643af015115dfe39 (patch) | |
| tree | 9fd89e19f67d8005a1a2998041695509618a0946 | |
| parent | b2545a4d146b99eb9a8400cfd6d617b76dc13c55 (diff) | |
| download | ruby-fe8a425101a83639379328fc643af015115dfe39.tar.gz ruby-fe8a425101a83639379328fc643af015115dfe39.tar.xz ruby-fe8a425101a83639379328fc643af015115dfe39.zip | |
* ext/zlib/extconf.rb: bccwin32 is win32 too.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3716 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | ext/zlib/extconf.rb | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Wed Apr 23 08:39:27 2003 Nobuyoshi Nakada <nobu.nokada@softhome.net> + + * ext/zlib/extconf.rb: bccwin32 is win32 too. + Tue Apr 22 20:58:00 2003 Takaaki Uematsu <uema2x@jcom.home.ne.jp> * ruby.c: don't call VirtualQuery in ruby_init_loadpath() diff --git a/ext/zlib/extconf.rb b/ext/zlib/extconf.rb index a1a28bb07..bf3349a65 100644 --- a/ext/zlib/extconf.rb +++ b/ext/zlib/extconf.rb @@ -22,7 +22,7 @@ if %w'z libz zlib'.find {|z| have_library(z, 'deflateReset')} and os_code = 'AMIGA' when /\Aos2[\-_]emx\z/ then os_code = 'OS2' - when 'mswin32', 'mingw32' then + when 'mswin32', 'mingw32', 'bccwin32' then # NOTE: cygwin should be regarded as Unix. os_code = 'WIN32' else |
