Merge pull request #2798 from iij/pr-netbsd

Fix build mruby for NetBSD
This commit is contained in:
Yukihiro "Matz" Matsumoto
2015-05-20 15:02:03 +09:00
2 changed files with 6 additions and 2 deletions
+5 -1
View File
@@ -12,7 +12,11 @@ MRuby::Gem::Specification.new('mruby-bin-mirb') do |spec|
spec.linker.libraries << 'termcap'
end
end
spec.linker.libraries << 'readline'
if RUBY_PLATFORM.include?('netbsd')
spec.linker.libraries << 'edit'
else
spec.linker.libraries << 'readline'
end
elsif spec.build.cc.search_header_path 'linenoise.h'
spec.cc.defines << "ENABLE_LINENOISE"
end
+1 -1
View File
@@ -90,7 +90,7 @@ fmt_u(uint32_t x, char *s)
typedef char compiler_defines_long_double_incorrectly[9-(int)sizeof(long double)];
#endif
#if defined(__CYGWIN32__) || defined(mips)
#if defined(__CYGWIN32__) || defined(__NetBSD__) || defined(mips)
static long double
frexpl (long double x, int *eptr)
{