summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2019-08-07 08:49:36 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2019-08-07 08:54:40 +0900
commiteceaa80de7ecb6648e3829a9258e1349679e5805 (patch)
tree216695b2b96d24ac6b4e23adeec428e070b138c6
parent97672b22e6c60f54e1fa59d61d9d79d0361dce1b (diff)
downloadmruby-eceaa80de7ecb6648e3829a9258e1349679e5805.tar.gz
mruby-eceaa80de7ecb6648e3829a9258e1349679e5805.zip
`RUBY_PLATFORM` may not contain `mswin` or `mingw`; Add `msys`
-rw-r--r--mrbgems/mruby-io/mrbgem.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/mrbgems/mruby-io/mrbgem.rake b/mrbgems/mruby-io/mrbgem.rake
index d79964590..e4f0b7bb6 100644
--- a/mrbgems/mruby-io/mrbgem.rake
+++ b/mrbgems/mruby-io/mrbgem.rake
@@ -6,7 +6,7 @@ MRuby::Gem::Specification.new('mruby-io') do |spec|
spec.cc.include_paths << "#{build.root}/src"
case RUBY_PLATFORM
- when /mingw|mswin/
+ when /mingw|mswin|msys/
spec.linker.libraries += ['Ws2_32']
#spec.cc.include_paths += ["C:/Windows/system/include"]
spec.linker.library_paths += ["C:/Windows/system"]