class Object

Constants

GLOB
LoadLibrary

Public Instance Methods

asplode(lib) click to toggle source
# File ext/mysql2/extconf.rb, line 3
def asplode lib
  if RUBY_PLATFORM =~ /mingw|mswin/
    abort "-----\n#{lib} is missing. please check your installation of mysql and try again.\n-----"
  elsif RUBY_PLATFORM =~ /darwin/
    abort "-----\n#{lib} is missing. Try 'brew install mysql', check your installation of mysql and try again.\n-----"
  else
    abort "-----\n#{lib} is missing. Try 'apt-get install libmysqlclient-dev' or
'yum install mysql-devel', check your installation of mysql and try again.\n-----"
  end
end