Sha256: 42c1af6cd5543cc8b2dc086786671da7e8a88a1e2237ad91eb23f9fe2c401881

Contents?: true

Size: 1.02 KB

Versions: 3

Compression:

Stored size: 1.02 KB

Contents

# ENV["RC_ARCHS"] = `uname -m`.chomp if `uname -sr` =~ /^Darwin/
#
# require 'mkmf'
#
# SWIG_WRAP = "sqlite3_api_wrap.c"
#
# dir_config( "sqlite3", "/usr/local" )
#
# if have_header( "sqlite3.h" ) && have_library( "sqlite3", "sqlite3_open" )
#   create_makefile( "sqlite3_c" )
# end

if RUBY_PLATFORM =~ /darwin/
  ENV["RC_ARCHS"] = `uname -m`.chomp if `uname -sr` =~ /^Darwin/

  # On PowerPC the defaults are fine
  ENV["RC_ARCHS"] = '' if `uname -m` =~ /^Power Macintosh/
end

# Loads mkmf which is used to make makefiles for Ruby extensions
require 'mkmf'

# Give it a name
extension_name = 'do_sqlite3_ext'

dir_config("sqlite3")

# NOTE: use GCC flags unless Visual C compiler is used
$CFLAGS << ' -Wall ' unless RUBY_PLATFORM =~ /mswin/

if RUBY_VERSION < '1.8.6'
  $CFLAGS << ' -DRUBY_LESS_THAN_186'
elsif RUBY_VERSION >= '1.9.0'
  $CFLAGS << ' -DRUBY_19_COMPATIBILITY'
end

# Do the work
# create_makefile(extension_name)
if have_header( "sqlite3.h" ) && have_library( "sqlite3", "sqlite3_open" )
  create_makefile(extension_name)
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
do_sqlite3-0.9.8 ext/extconf.rb
do_sqlite3-0.9.9 ext/extconf.rb
do_sqlite3-0.9.9-x86-mswin32-60 ext/extconf.rb