Don't error-out when run-time libsqlite is older than build-time libsqlite
authorMike Hommey <mh@glandium.org>
Mon, 22 Mar 2010 10:45:42 +0000 (11:45 +0100)
committerMike Hommey <glandium@debian.org>
Sun, 14 Feb 2016 09:25:51 +0000 (09:25 +0000)
In Debian, we have shlibs to handle this.

Gbp-Pq: Topic debian-hacks
Gbp-Pq: Name Don-t-error-out-when-run-time-libsqlite-is-older-tha.patch

storage/mozStorageService.cpp

index 5370cf43072121f1b0d6ec2b56b1e36f7839aaa7..8748360c479a6c534773987bc50038822a14b9ab 100644 (file)
@@ -215,6 +215,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.
@@ -230,6 +231,7 @@ Service::getSingleton()
     }
     ::PR_Abort();
   }
+#endif
 
   // The first reference to the storage service must be obtained on the
   // main thread.