- Bug 133386: Remove install time dependency on keyring and
kdewallet. - Bug 148102: CASA-gui requires kdelibs3.
This commit is contained in:
parent
72c87b8e2e
commit
419634c063
@ -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
|
||||
|
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user