Sha256: 513b3927125f051beb34021dacb9a5dbc6bdd3c991cf5a731c8107b4394e328d

Contents?: true

Size: 398 Bytes

Versions: 1

Compression:

Stored size: 398 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

1 entries across 1 versions & 1 rubygems

Version Path
amalgalite-0.2.4 ext/extconf.rb