File: build-with-system-sqlite.patch

package info (click to toggle)
ruby-sqlite3 2.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 680 kB
  • sloc: ruby: 4,827; ansic: 1,868; sh: 91; makefile: 7
file content (16 lines) | stat: -rw-r--r-- 468 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: force building with system libraries
Author: Cédric Boutillier <boutil@debian.org>
Forwarded: not-needed
Last-Update: 2024-07-27

--- a/ext/sqlite3/extconf.rb
+++ b/ext/sqlite3/extconf.rb
@@ -9,7 +9,7 @@
       def configure
         configure_cross_compiler
 
-        if system_libraries?
+        if true # system_libraries?
           message "Building sqlite3-ruby using system #{libname}.\n"
           configure_system_libraries
         else