rowland / fb

Firebird Extension Library for Ruby
64 stars 35 forks source link

I had to change the PLATFORM const to RUBY_PLATFORM in order to build the gem #6

Closed zedalaye closed 13 years ago

zedalaye commented 13 years ago

Hi Brent,

I tried to build the fb gem using RubyInstaller 1.9.2p136 + DevKit on Windows and the gem build command failed complaining that the PLATFORM const was not declared.

I had to change it to RUBY_PLATFORM to make the gem builder happy.

s.platform = case RUBY_PLATFORM when /win32/ then Gem::Platform::WIN32 else Gem::Platform::RUBY end

Pierre

zedalaye commented 13 years ago

I wrote another issue with a pull request for this change.