- Bug 133386: Remove install time dependency on keyring and

kdewallet.
- Bug 148102: CASA-gui requires kdelibs3.
This commit is contained in:
smanojna 2006-02-14 04:22:33 +00:00
parent 72c87b8e2e
commit 419634c063
2 changed files with 22 additions and 2 deletions

View File

@ -1,4 +1,10 @@
-------------------------------------------------------------------
Tue Feb 14 09:57:43 IST 2006 - smanojna@novell.com
- Bug 133386: Remove install time dependency on keyring and
kdewallet.
- Bug 148102: CASA-gui requires kdelibs3.
-------------------------------------------------------------------
Mon Feb 13 08:50:22 MST 2006 - cmashayekhi@novell.com
- compiler option -fstack-protector was added to the build scripts

View File

@ -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()