mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
2eeac91098
If your system has sa_len but is not BSD-derived, define HAVE_SA_LEN=1 on mrbgem.rake or build_config.rb.
19 lines
572 B
Ruby
19 lines
572 B
Ruby
MRuby::Gem::Specification.new('mruby-socket') do |spec|
|
|
spec.license = 'MIT'
|
|
spec.authors = 'Internet Initiative Japan'
|
|
spec.summary = 'standard socket class'
|
|
|
|
spec.cc.include_paths << "#{build.root}/src"
|
|
#spec.cc.defines << "HAVE_SA_LEN=0"
|
|
|
|
# If Windows, use winsock
|
|
if ( /mswin|mingw|win32/ =~ RUBY_PLATFORM ) then
|
|
spec.linker.libraries << "wsock32"
|
|
spec.linker.libraries << "ws2_32"
|
|
end
|
|
|
|
spec.add_dependency('mruby-io', :core => 'mruby-io')
|
|
spec.add_dependency('mruby-pack', :core => 'mruby-pack')
|
|
# spec.add_dependency('mruby-mtest')
|
|
end
|