7
0
Files
perl-DBD-SQLite/perl-DBD-SQLite-use-external-sqlite3.patch
Stephan Kulow 871b99ede2 Accepting request 1037719 from devel:languages:perl:autoupdate
- Update perl-DBD-SQLite-use-external-sqlite3.patch (remove metadata
  fix, not needed anymore)
- updated to 1.72
   see /usr/share/doc/packages/perl-DBD-SQLite/Changes
  1.72 2022-11-04
      - Switched to a production version
  1.71_07 2022-10-26
      - Upgraded SQLite to 3.39.4
  1.71_06 2022-03-12
      - Set UTF8CACHE to avoid slowdown with -DDEBUGGING (andk, Leont, FGasper)
  1.71_05 2022-02-26
      - Fix another test failure on perl built with -DDEBUGGING
      - Lowercase datatype in table column metadata for backcompat
  1.71_04 2022-02-26
      - Fix test failure on perl built with -DDEBUGGING (andk++)
  1.71_03 2022-02-23
      - Upgraded SQLite to 3.38.0
      - Expose sqlite_error_offset introduced in 3.38.0
  1.71_02 2022-01-07
      - Upgraded SQLite to 3.37.2
      - Improve sqlite_load_extension doc (GH#94, Derek Lamb++)
  1.71_01 2021-12-02
      - Upgraded SQLite to 3.37.0
      - Add a feature to unregister a created function
      - Fix accented characters in POD (GH#90, HaraldJoerg++)

OBS-URL: https://build.opensuse.org/request/show/1037719
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-DBD-SQLite?expand=0&rev=75
2022-11-24 09:14:01 +00:00

14 lines
519 B
Diff

Index: DBD-SQLite-1.70/Makefile.PL
===================================================================
--- DBD-SQLite-1.70.orig/Makefile.PL
+++ DBD-SQLite-1.70/Makefile.PL
@@ -129,7 +129,7 @@ SCOPE: {
# a system sqlite is also sophisticated enough to have a patching system
# that can change the if ( 0 ) to if ( 1 )
my ($sqlite_local, $sqlite_base, $sqlite_lib, $sqlite_inc);
-if ( 0 ) {
+if ( 1 ) {
require File::Spec;
if ( $sqlite_base = (grep(/SQLITE_LOCATION=.*/, @ARGV))[0] ) {
$sqlite_base =~ /=(.*)/;