Thursday, March 24, 2011

F# interpreter and KDE4

If you launch F# interpreter(fsi) on KDE4, error message is rising up in some cases. The message is:
Microsoft (R) F# 2.0 Interactive build (private)
Copyright (c) 2002-2010 Microsoft Corporation. All Rights Reserved.

For help type #help;;

> KDE colorscheme read failure, using built-in colorscheme

This is caused by:
  1. There are no KDE3 libraries and there are only KDE4 libraries.
  2. Mono or F# calls only ReadKDEColorsheme() function and does not call ReadKDE4Colorsheme()

The simplest solution is to type below in ~ directory:
>ln -s .kde4 .kde
That's all!

No comments:

Post a Comment