Package: icedove / 1:52.3.0-4~deb8u2

debian-hacks/Don-t-error-out-when-run-time-libsqlite-is-older-tha.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
From: Mike Hommey <glandium@debian.org>
Date: Mon, 5 Apr 2010 17:58:23 +0200
Subject: Don't error-out when run-time libsqlite is older than build-time
 libsqlite

In Debian, we have shlibs to handle this.
---
 mozilla/storage/mozStorageService.cpp | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/mozilla/storage/mozStorageService.cpp b/mozilla/storage/mozStorageService.cpp
index 4f288ad..0bc0bb5 100644
--- a/mozilla/storage/mozStorageService.cpp
+++ b/mozilla/storage/mozStorageService.cpp
@@ -203,6 +203,7 @@ Service::getSingleton()
     return gService;
   }
 
+#if 0
   // Ensure that we are using the same version of SQLite that we compiled with
   // or newer.  Our configure check ensures we are using a new enough version
   // at compile time.
@@ -220,6 +221,7 @@ Service::getSingleton()
     }
     MOZ_CRASH("SQLite Version Error");
   }
+#endif
 
   // The first reference to the storage service must be obtained on the
   // main thread.