mirror of
https://git.freebsd.org/ports.git
synced 2025-07-08 04:49:17 -04:00
24 lines
447 B
Text
24 lines
447 B
Text
--- lib/cxform.cc.orig Tue May 2 04:18:33 2000
|
|
+++ lib/cxform.cc Thu Oct 12 14:44:03 2000
|
|
@@ -26,6 +26,10 @@
|
|
static char *rcsid = "$Id";
|
|
#endif
|
|
|
|
+#ifdef __FreeBSD__
|
|
+#include <ieeefp.h>
|
|
+#endif
|
|
+
|
|
long
|
|
Cxform::getRed(long v) {
|
|
long val;
|
|
@@ -69,6 +73,10 @@
|
|
Color
|
|
Cxform::getColor(Color color) {
|
|
Color newColor;
|
|
+
|
|
+#ifdef __FreeBSD__
|
|
+ fpsetmask(0);
|
|
+#endif
|
|
|
|
newColor.red = getRed(color.red);
|
|
newColor.green = getGreen(color.green);
|