Don't try to use the non-existent fpresetsticky function on the Alpha.

This commit is contained in:
Steve Price 2000-08-08 02:49:11 +00:00
parent 10c9e390c1
commit 4f35114a4c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=31397

View File

@ -0,0 +1,21 @@
--- Lib/cxform.cc.orig Sun Aug 6 18:07:51 2000
+++ Lib/cxform.cc Sun Aug 6 18:08:18 2000
@@ -23,7 +23,7 @@
static char *rcsid = "$Id";
#ifdef __FreeBSD__
-#include <floatingpoint.h>
+#include <ieeefp.h>
#endif
#include "cxform.h"
@@ -63,7 +63,9 @@
if (newColor.blue > 255) newColor.blue = 255;
newColor.alpha = getAlpha(color.alpha);
#ifdef __FreeBSD__
+#ifndef __alpha__
fpresetsticky(FP_X_DZ|FP_X_INV);
+#endif
fpsetmask(FP_X_DZ|FP_X_INV);
#endif