Top Level Namespace
Defined Under Namespace
Modules: SQLite3 Classes: String
Instance Method Summary collapse
Instance Method Details
#asplode(missing) ⇒ Object
45 46 47 48 49 50 51 52 53 54 55 56 57 |
# File 'ext/sqlite3/extconf.rb', line 45 def asplode missing if RUBY_PLATFORM =~ /mingw|mswin/ abort "#{missing} is missing. Install SQLite3 from " + "http://www.sqlite.org/ first." else abort <<-error #{missing} is missing. Try 'port install sqlite3 +universal', 'yum install sqlite-devel' or 'apt-get install libsqlite3-dev' and check your shared library search path (the location where your sqlite3 shared library is located). error end end |