sqlite3-full 1.3.9.1 → 1.3.9.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Manifest.txt +1 -0
- data/ext/sqlite3/extconf.rb +2 -2
- data/ext/sqlite3/sqlite3.h +7715 -0
- data/lib/sqlite3/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 61b3f2c8b4bc54da10ba86e86e717f1e6ff28936
|
4
|
+
data.tar.gz: 75e3ff46e311ed05bfa55825fe5aaa63369e80af
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f410681d5ddd2494b4924f8c22eb9bddac1b43d4b4675c4852aaaa6ac489a266afc7764b53d17928bfb14756405c972edb29409a563313be179566ac33c474bf
|
7
|
+
data.tar.gz: 5f4a4dabe42eeee025206bfeb88ef182b7c5cd26acd9d11a43ae738405f701c6c8a94690855b62894846b8d3cd4802e8546000e1be216fe28434f10688417f71
|
data/Manifest.txt
CHANGED
data/ext/sqlite3/extconf.rb
CHANGED
@@ -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
|