Next Previous Table of Contents
KCalc is part of the KDE project http://www.kde.org. KCalc can be found on ftp://ftp.kde.org/pub/kde/, the main ftp site of the KDE project. It's home site is http://math.cornell.edu/~wuebben/kde.html
In order to successfully compile KCalc, you need the latest versions of libkdecore
and libkdeui
. All required libraries as well as KCalc itself can be found
on
ftp://ftp.kde.org/pub/kde/.
The usual:
% ./configure
% make
% make install
IMPORTANT:
How to enable long double precision for KCalc:
If your machine supports the C data type 'long double' and if you have a working libc you can enable 'long double' precison for KCalc.
( RedHat 5.0 users are out of luck -- I suggest you get yourself a KDE friendly Linux distribution that has a working libc )
Here is what to do:
#define HAVE_LONG_DOUBLE 1
If you can't find such a line your system doesn't support long
double IEEE precision.
#ifdef HAVE_LONG_DOUBLE
#undef HAVE_LONG_DOUBLE
#endif
Next Previous Table of Contents