sqlite3-full 1.3.9.2 → 1.3.9.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 61b3f2c8b4bc54da10ba86e86e717f1e6ff28936
4
- data.tar.gz: 75e3ff46e311ed05bfa55825fe5aaa63369e80af
3
+ metadata.gz: ad9ece16efd6ac2e445f7e1a4fb8c1297574676c
4
+ data.tar.gz: 50cd5de796747d70b96519c2c093c4a2756cc67a
5
5
  SHA512:
6
- metadata.gz: f410681d5ddd2494b4924f8c22eb9bddac1b43d4b4675c4852aaaa6ac489a266afc7764b53d17928bfb14756405c972edb29409a563313be179566ac33c474bf
7
- data.tar.gz: 5f4a4dabe42eeee025206bfeb88ef182b7c5cd26acd9d11a43ae738405f701c6c8a94690855b62894846b8d3cd4802e8546000e1be216fe28434f10688417f71
6
+ metadata.gz: 091cca5c1825762e19963ef48f793cc9bbc5e2ca456f0a70a342dc4024202e398dcdc00c1a4223b9bb6eb333b08dd9689ce3c5510968aa41983003d0ed41e575
7
+ data.tar.gz: 8fddcbc5a8c38dc2952ae2a3efe43d5241d9e452b01d546d276fb5fbad7aba74e72fe0cbf02c2e064a5a8eed52c659c55a45f96293284d8fc829b6dbc0505823
@@ -13,7 +13,6 @@ RbConfig::MAKEFILE_CONFIG['CC'] = ENV['CC'] if ENV['CC']
13
13
  # The only difference: we include FTS3 *and* FTS4
14
14
  $defs.push "-DSQLITE_ENABLE_FTS4"
15
15
  $defs.push "-DSQLITE_ENABLE_FTS3_PARENTHESIS"
16
- $defs.push "-DSQLITE_ENABLE_LOCKING_STYLE=1"
17
16
  $defs.push "-DSQLITE_ENABLE_RTREE"
18
17
  $defs.push "-DSQLITE_SYSTEM_MALLOC"
19
18
  $defs.push "-DSQLITE_THREADSAFE=2"
@@ -26,6 +25,10 @@ $defs.push "-DSQLITE_SOUNDEX"
26
25
 
27
26
  $defs.push "-I#{File.dirname(__FILE__)}"
28
27
 
28
+ if RbConfig::CONFIG["host_os"] =~ /darwin/
29
+ $defs.push "-DSQLITE_ENABLE_LOCKING_STYLE=1"
30
+ end
31
+
29
32
  # Some additional warnings: on my machine compiling the sqlite3 amalgation spits out some
30
33
  # warnings. As we don't hack sqlite3, but only the rubygem, we don't need these.
31
34
  $warnflags += " -Wno-incompatible-pointer-types-discards-qualifiers"
@@ -33,6 +36,8 @@ $warnflags += " -Wno-unused-const-variable"
33
36
  $warnflags += " -Wno-shorten-64-to-32"
34
37
  $warnflags += " -Wno-typedef-redefinition"
35
38
 
39
+ $warnflags += " -Wno-cast-qual"
40
+
36
41
  if RbConfig::CONFIG["host_os"] =~ /mswin/
37
42
  $CFLAGS << ' -W3'
38
43
  end
@@ -1,6 +1,6 @@
1
1
  module SQLite3
2
2
 
3
- VERSION = '1.3.9.2'
3
+ VERSION = '1.3.9.3'
4
4
 
5
5
  module VersionProxy
6
6
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sqlite3-full
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.9.2
4
+ version: 1.3.9.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jamis Buck