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/src/mozStorageService.cpp | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/mozilla/storage/src/mozStorageService.cpp b/mozilla/storage/src/mozStorageService.cpp
index 1d48046..43cd79a 100644
--- a/mozilla/storage/src/mozStorageService.cpp
+++ b/mozilla/storage/src/mozStorageService.cpp
@@ -78,6 +78,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.
@@ -93,6 +94,7 @@ Service::getSingleton()
}
::PR_Abort();
}
+#endif
gService = new Service();
if (gService) {
--