sqlite3 1.6.0.rc1-x86-linux → 1.6.0.rc2-x86-linux

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f5825d2358368aa3dd752e2746e67f0daf989438b4ea91457dd2e3300961ee01
4
- data.tar.gz: 8ccb30dc38937fa8c15ed05997d67f02fbcbfad26aee68585abecf03f830f52d
3
+ metadata.gz: 810b0fa8dd292b0d10990d62f9c293e0f468094e679e510dfe5e38bd8db0583d
4
+ data.tar.gz: aa1eb88cf53e54522a078b3229f6d79aa9a22f9b8872911414b68e62063f3d51
5
5
  SHA512:
6
- metadata.gz: 9d5e59a90283488c388a8083ed3a65a714456d52ff9ff26a2d1a5dc6806c016d2571f57148fc5436c6f306390515f28d106e7c22640a68b194f545dcf158f429
7
- data.tar.gz: cf69a2b736608917ddaefe2f59f89edb80b9f9a3417b349bbcedc59f62e5869e016312653168586294c72a3db2af31a7fa7ff9339e7a43261de040d34b8ad86b
6
+ metadata.gz: 629a0fa16c1e8f17baac5849be01360d9f29ed38c33f0b9422782c39b5c734ead767e3d63a53b00d2a1aa19e5085b31c26876ca19861c5b57884d46dba8a2919
7
+ data.tar.gz: ab955e862e057ad6ad22a7cb425984bdaf52e7116bdd857464e16905de777839598b60e14481a3a90d01f13c09a2eeec004d141ddfae3a5cc2140623257d3a1a
@@ -55,6 +55,7 @@ module Sqlite3
55
55
  additional_cflags = [
56
56
  "-fPIC", # needed for linking the static library into a shared library
57
57
  "-O2", # see https://github.com/sparklemotion/sqlite3-ruby/issues/335 for some benchmarks
58
+ "-fvisibility=hidden", # see https://github.com/rake-compiler/rake-compiler-dock/issues/87
58
59
  ]
59
60
  env["CFLAGS"] = [env["CFLAGS"], additional_cflags].flatten.join(" ")
60
61
  recipe.configure_options += env.select { |k,v| ENV_ALLOWLIST.include?(k) }
@@ -81,14 +82,9 @@ module Sqlite3
81
82
  abort_pkg_config("xpopen") unless $?.success?
82
83
  ldflags = ldflags.split
83
84
 
84
- if needs_darwin_linker_hack
85
- ldflags.delete("-lsqlite3")
86
- ldflags.prepend("-Wl,-flat_namespace", "-Wl,-hidden-lsqlite3")
87
- else
88
- # see https://github.com/flavorjones/mini_portile/issues/118
89
- "-L#{lib_path}".tap do |lib_path_flag|
90
- ldflags.prepend(lib_path_flag) unless ldflags.include?(lib_path_flag)
91
- end
85
+ # see https://github.com/flavorjones/mini_portile/issues/118
86
+ "-L#{lib_path}".tap do |lib_path_flag|
87
+ ldflags.prepend(lib_path_flag) unless ldflags.include?(lib_path_flag)
92
88
  end
93
89
 
94
90
  ldflags.each { |ldflag| append_ldflags(ldflag) }
@@ -100,6 +96,8 @@ module Sqlite3
100
96
  append_cppflags("-DTAINTING_SUPPORT")
101
97
  end
102
98
 
99
+ append_cflags("-fvisibility=hidden") # see https://github.com/rake-compiler/rake-compiler-dock/issues/87
100
+
103
101
  if find_header("sqlite3.h")
104
102
  # noop
105
103
  elsif sqlcipher? && find_header("sqlcipher/sqlite3.h")
@@ -177,13 +175,6 @@ module Sqlite3
177
175
  minimal_recipe.download
178
176
  end
179
177
 
180
- def needs_darwin_linker_hack
181
- # See https://github.com/rake-compiler/rake-compiler-dock/issues/87 for more info.
182
- cross_build? &&
183
- darwin? &&
184
- RbConfig::CONFIG["ruby_version"] >= "3.2"
185
- end
186
-
187
178
  def darwin?
188
179
  RbConfig::CONFIG["target_os"].include?("darwin")
189
180
  end
@@ -127,6 +127,7 @@ void init_sqlite3_constants()
127
127
  #endif
128
128
  }
129
129
 
130
+ RUBY_FUNC_EXPORTED
130
131
  void Init_sqlite3_native()
131
132
  {
132
133
  /*
Binary file
Binary file
Binary file
Binary file
@@ -1,12 +1,12 @@
1
1
  module SQLite3
2
2
 
3
- VERSION = "1.6.0.rc1"
3
+ VERSION = "1.6.0.rc2"
4
4
 
5
5
  module VersionProxy
6
6
  MAJOR = 1
7
7
  MINOR = 6
8
8
  TINY = 0
9
- BUILD = "rc1"
9
+ BUILD = "rc2"
10
10
 
11
11
  STRING = [ MAJOR, MINOR, TINY, BUILD ].compact.join( "." )
12
12
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sqlite3
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0.rc1
4
+ version: 1.6.0.rc2
5
5
  platform: x86-linux
6
6
  authors:
7
7
  - Jamis Buck
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2023-01-02 00:00:00.000000000 Z
13
+ date: 2023-01-04 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: minitest