- Bug 133386: Remove install time dependency on keyring and
kdewallet. - Bug 148102: CASA-gui requires kdelibs3.
This commit is contained in:
@@ -455,9 +455,23 @@ namespace Novell.CASA.DataEngines
|
||||
|
||||
public static Boolean IsStoreAvailable()
|
||||
{
|
||||
return true;
|
||||
try
|
||||
{
|
||||
System.Runtime.InteropServices.Marshal.PrelinkAll(typeof(kwallet));
|
||||
return true;
|
||||
}
|
||||
catch(DllNotFoundException d)
|
||||
{
|
||||
Console.WriteLine("Store Not Available Exception =" + d.ToString());
|
||||
return false;
|
||||
}
|
||||
catch(Exception e)
|
||||
{
|
||||
Console.WriteLine("Store Not Available Exception =" + e.ToString());
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
#if TEST
|
||||
public static void Main()
|
||||
|
||||
Reference in New Issue
Block a user