[banshee] Disable Gio addin and fix build; default to Unix



commit 86d997ea6367ae9757fdfe6d0894db86b3e43ecb
Author: Gabriel Burt <gabriel burt gmail com>
Date:   Thu Nov 12 13:51:35 2009 -0800

    Disable Gio addin and fix build; default to Unix

 src/Backends/Banshee.Gio/Banshee.Gio.addin.xml     |    2 +-
 .../Banshee.Gio/Banshee.IO.Gio/DemuxVfs.cs         |    2 --
 src/Core/Banshee.Core/Banshee.IO/Provider.cs       |    2 +-
 3 files changed, 2 insertions(+), 4 deletions(-)
---
diff --git a/src/Backends/Banshee.Gio/Banshee.Gio.addin.xml b/src/Backends/Banshee.Gio/Banshee.Gio.addin.xml
index 8faf806..56fd7a8 100644
--- a/src/Backends/Banshee.Gio/Banshee.Gio.addin.xml
+++ b/src/Backends/Banshee.Gio/Banshee.Gio.addin.xml
@@ -6,7 +6,7 @@
     copyright="© 2009 Novell Inc. Licensed under the MIT X11 license."
     category="required:Backends"
     description="GIO IO backend"
-    defaultEnabled="true">
+    defaultEnabled="false">
 
   <Dependencies>
     <Addin id="Banshee.Core" version="1.0"/>
diff --git a/src/Backends/Banshee.Gio/Banshee.IO.Gio/DemuxVfs.cs b/src/Backends/Banshee.Gio/Banshee.IO.Gio/DemuxVfs.cs
index 4cf9469..e5aaa51 100644
--- a/src/Backends/Banshee.Gio/Banshee.IO.Gio/DemuxVfs.cs
+++ b/src/Backends/Banshee.Gio/Banshee.IO.Gio/DemuxVfs.cs
@@ -37,11 +37,9 @@ namespace Banshee.IO.Gio
     {
         private GLib.File file;
         private GLib.FileInfo file_info;
-        private string path;
 
         public DemuxVfs (string path)
         {
-            this.path = path;
             file = path.StartsWith ("/") ? FileFactory.NewForPath (path) : FileFactory.NewForUri (path);
 
             if (file.Exists) {
diff --git a/src/Core/Banshee.Core/Banshee.IO/Provider.cs b/src/Core/Banshee.Core/Banshee.IO/Provider.cs
index f70172b..6f46ae0 100644
--- a/src/Core/Banshee.Core/Banshee.IO/Provider.cs
+++ b/src/Core/Banshee.Core/Banshee.IO/Provider.cs
@@ -93,7 +93,7 @@ namespace Banshee.IO
         
         internal static readonly SchemaEntry<string> ProviderSchema = new SchemaEntry<string> (
             "core", "io_provider",
-            "Banshee.IO.Gio.Provider",
+            "Banshee.IO.Unix.Provider",
             "Set the IO provider backend in Banshee",
             "Can be either \"Banshee.IO.SystemIO.Provider\" (.NET System.IO), " + 
                 "\"Banshee.IO.Gio.Provider\" (GIO), or " +



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