[tracker/bump_api_version_0.12] firefox, thunderbird: Require 0.10 or 0.12 .so files not 0.11



commit 00756490583e7cbeaa6f60cbbfc9355333c38477
Author: Martyn Russell <martyn lanedo com>
Date:   Wed Aug 3 10:07:18 2011 +0100

    firefox, thunderbird: Require 0.10 or 0.12 .so files not 0.11

 src/plugins/firefox/chrome/content/bindings.js     |    4 ++--
 src/plugins/thunderbird/chrome/content/bindings.js |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/src/plugins/firefox/chrome/content/bindings.js b/src/plugins/firefox/chrome/content/bindings.js
index a5374a5..6df8d21 100644
--- a/src/plugins/firefox/chrome/content/bindings.js
+++ b/src/plugins/firefox/chrome/content/bindings.js
@@ -18,12 +18,12 @@ org.bustany.TrackerFox.TrackerSparql = {
 		try {
 			tracker._lib = ctypes.open (tracker._trackerSparqlPath);
 		} catch (e) {
-			tracker._trackerSparqlPath = "libtracker-sparql-0.11.so.0";
+			tracker._trackerSparqlPath = "libtracker-sparql-0.12.so.0";
 
 			try {
 				tracker._lib = ctypes.open (tracker._trackerSparqlPath);
 			} catch (e) {
-				dump("Could not load libtracker-sparql 0.10 or 0.11\n");
+				dump("Could not load libtracker-sparql 0.10 or 0.12\n");
 				return false;
 			}
 		}
diff --git a/src/plugins/thunderbird/chrome/content/bindings.js b/src/plugins/thunderbird/chrome/content/bindings.js
index d253bdf..68c49dd 100644
--- a/src/plugins/thunderbird/chrome/content/bindings.js
+++ b/src/plugins/thunderbird/chrome/content/bindings.js
@@ -18,12 +18,12 @@ org.bustany.TrackerBird.TrackerSparql = {
 		try {
 			tracker._lib = ctypes.open (tracker._trackerSparqlPath);
 		} catch (e) {
-			tracker._trackerSparqlPath = "libtracker-sparql-0.11.so.0";
+			tracker._trackerSparqlPath = "libtracker-sparql-0.12.so.0";
 
 			try {
 				tracker._lib = ctypes.open (tracker._trackerSparqlPath);
 			} catch (e) {
-				dump ("Could not load libtracker-sparql 0.10 or 0.11: " + e + "\n");
+				dump ("Could not load libtracker-sparql 0.10 or 0.12: " + e + "\n");
 				return false;
 			}
 		}



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]