Sha256: 9cc0514f13200098f118a1bd8ecd5775b509a60206db0e27afb7c1e09c8ef7a9

Contents?: true

Size: 397 Bytes

Versions: 2

Compression:

Stored size: 397 Bytes

Contents

require 'mkmf'
require 'rbconfig'

# make available table and column meta data api
$CFLAGS += " -DSQLITE_ENABLE_COLUMN_METADATA=1"  

# we compile sqlite the same way that the installation of ruby is compiled.
if Config::CONFIG['configure_args'].include?( "--enable-pthread" ) then
  $CFLAGS += " -DSQLITE_THREADSAFE=1"
else
  $CFLAGS += "-DSQLITE_THREADSAFE=0"
end
create_makefile('amalgalite3')

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
amalgalite-0.2.3 ext/extconf.rb
amalgalite-0.2.2 ext/extconf.rb