summaryrefslogtreecommitdiffstats
path: root/meta-linaro-integration/recipes-overlayed/firefox/firefox/debian-hacks/Don-t-error-out-when-run-time-libsqlite-is-older-tha.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-linaro-integration/recipes-overlayed/firefox/firefox/debian-hacks/Don-t-error-out-when-run-time-libsqlite-is-older-tha.patch')
-rw-r--r--meta-linaro-integration/recipes-overlayed/firefox/firefox/debian-hacks/Don-t-error-out-when-run-time-libsqlite-is-older-tha.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/meta-linaro-integration/recipes-overlayed/firefox/firefox/debian-hacks/Don-t-error-out-when-run-time-libsqlite-is-older-tha.patch b/meta-linaro-integration/recipes-overlayed/firefox/firefox/debian-hacks/Don-t-error-out-when-run-time-libsqlite-is-older-tha.patch
new file mode 100644
index 0000000..dd5661f
--- /dev/null
+++ b/meta-linaro-integration/recipes-overlayed/firefox/firefox/debian-hacks/Don-t-error-out-when-run-time-libsqlite-is-older-tha.patch
@@ -0,0 +1,30 @@
1From: Mike Hommey <mh@glandium.org>
2Date: Mon, 22 Mar 2010 11:45:42 +0100
3Subject: Don't error-out when run-time libsqlite is older than build-time
4 libsqlite
5
6In Debian, we have shlibs to handle this.
7---
8 storage/src/mozStorageService.cpp | 2 ++
9 1 file changed, 2 insertions(+)
10
11diff --git a/storage/src/mozStorageService.cpp b/storage/src/mozStorageService.cpp
12index 7c0a7a0..0121765 100644
13--- a/storage/src/mozStorageService.cpp
14+++ b/storage/src/mozStorageService.cpp
15@@ -222,6 +222,7 @@ Service::getSingleton()
16 return gService;
17 }
18
19+#if 0
20 // Ensure that we are using the same version of SQLite that we compiled with
21 // or newer. Our configure check ensures we are using a new enough version
22 // at compile time.
23@@ -237,6 +238,7 @@ Service::getSingleton()
24 }
25 ::PR_Abort();
26 }
27+#endif
28
29 gService = new Service();
30 if (gService) {