sqlite3-full 1.3.9.1 → 1.3.9.2

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: 6affde88fde67c581836a4ee48ffc64d4440f3ba
4
- data.tar.gz: e54b1aff3a25a80c2525805ec799c8f59ad8b729
3
+ metadata.gz: 61b3f2c8b4bc54da10ba86e86e717f1e6ff28936
4
+ data.tar.gz: 75e3ff46e311ed05bfa55825fe5aaa63369e80af
5
5
  SHA512:
6
- metadata.gz: f8be6bcd9ea51105ff62be9c7ee5e6b7d9266a8b9d865de344ef0665cb3844e24e72730a81448ce4738107303aab343ecbea1992a0357709d4adf35b868ad0ca
7
- data.tar.gz: 54aef6580ebf0778e4ca37c6ef2cd35a0b844901201c0cb681f0fb2f6dbd7538fcef0f6214405deb0c24291407a2fadb1fdf0f8a2cc85390fbcf70c26f2b8ba5
6
+ metadata.gz: f410681d5ddd2494b4924f8c22eb9bddac1b43d4b4675c4852aaaa6ac489a266afc7764b53d17928bfb14756405c972edb29409a563313be179566ac33c474bf
7
+ data.tar.gz: 5f4a4dabe42eeee025206bfeb88ef182b7c5cd26acd9d11a43ae738405f701c6c8a94690855b62894846b8d3cd4802e8546000e1be216fe28434f10688417f71
data/Manifest.txt CHANGED
@@ -13,6 +13,7 @@ ext/sqlite3/database.h
13
13
  ext/sqlite3/exception.c
14
14
  ext/sqlite3/exception.h
15
15
  ext/sqlite3/extconf.rb
16
+ ext/sqlite3/sqlite3.h
16
17
  ext/sqlite3/sqlite3.c
17
18
  ext/sqlite3/sqlite3_ruby.h
18
19
  ext/sqlite3/statement.c
@@ -24,6 +24,8 @@ $defs.push "-DSQLITE_ENABLE_MEMORY_MANAGEMENT"
24
24
  $defs.push "-DSQLITE_ENABLE_RTREE"
25
25
  $defs.push "-DSQLITE_SOUNDEX"
26
26
 
27
+ $defs.push "-I#{File.dirname(__FILE__)}"
28
+
27
29
  # Some additional warnings: on my machine compiling the sqlite3 amalgation spits out some
28
30
  # warnings. As we don't hack sqlite3, but only the rubygem, we don't need these.
29
31
  $warnflags += " -Wno-incompatible-pointer-types-discards-qualifiers"
@@ -31,8 +33,6 @@ $warnflags += " -Wno-unused-const-variable"
31
33
  $warnflags += " -Wno-shorten-64-to-32"
32
34
  $warnflags += " -Wno-typedef-redefinition"
33
35
 
34
- $CFLAGS << " -I#{File.dirname(__FILE__)}"
35
-
36
36
  if RbConfig::CONFIG["host_os"] =~ /mswin/
37
37
  $CFLAGS << ' -W3'
38
38
  end