Skip to content

Commit 13c1b51

Browse files
committed
Update SQLite port to 3.7.17.
1 parent 78a4632 commit 13c1b51

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

tasks/native.rake

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ require 'rake/extensiontask'
44
# NOTE: version used by cross compilation of Windows native extension
55
# It do not affect compilation under other operating systems
66
# The version indicated is the minimum DLL suggested for correct functionality
7-
BINARY_VERSION = "3.7.13"
8-
URL_VERSION = "3071300"
7+
BINARY_VERSION = "3.7.17"
8+
URL_VERSION = "3071700"
9+
URL_PATH = "/2013"
910

1011
# build sqlite3_native C extension
1112
RUBY_EXTENSION = Rake::ExtensionTask.new('sqlite3_native', HOE.spec) do |ext|

tasks/vendor_sqlite3.rake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ directory "ports"
88

99
def define_sqlite_task(platform, host)
1010
recipe = MiniPortile.new "sqlite3", BINARY_VERSION
11-
recipe.files << "http://sqlite.org/sqlite-autoconf-#{URL_VERSION}.tar.gz"
11+
recipe.files << "http://sqlite.org#{URL_PATH}/sqlite-autoconf-#{URL_VERSION}.tar.gz"
1212
recipe.host = host
1313

1414
desc "Compile sqlite3 for #{platform} (#{host})"

0 commit comments

Comments
 (0)