summaryrefslogtreecommitdiff
path: root/graphics/killustrator
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>2000-08-08 02:51:55 +0000
committerSteve Price <steve@FreeBSD.org>2000-08-08 02:51:55 +0000
commit3ec55c71e58f2925e4471f9ec7dc1477005e6404 (patch)
tree20f2a94319440be1754d8975f99c762f73b5c317 /graphics/killustrator
parentDon't try to use the non-existent fpresetsticky function on the Alpha. (diff)
Don't try to use fpresetsticky(3) on the Alpha as it doesn't exist there.
Notes
Notes: svn path=/head/; revision=31398
Diffstat (limited to 'graphics/killustrator')
-rw-r--r--graphics/killustrator/files/patch-ad21
1 files changed, 21 insertions, 0 deletions
diff --git a/graphics/killustrator/files/patch-ad b/graphics/killustrator/files/patch-ad
new file mode 100644
index 000000000000..4575bf91841c
--- /dev/null
+++ b/graphics/killustrator/files/patch-ad
@@ -0,0 +1,21 @@
+--- standalone/main.cc.orig Sun Aug 6 21:58:28 2000
++++ standalone/main.cc Sun Aug 6 21:59:58 2000
+@@ -31,7 +31,7 @@
+ #endif
+
+ #ifdef __FreeBSD__
+-#include <floatingpoint.h>
++#include <ieeefp.h>
+ #endif
+
+ #include <kapp.h>
+@@ -141,7 +141,9 @@
+ int retval = app->exec ();
+
+ #ifdef __FreeBSD__
++#ifndef __alpha__
+ fpresetsticky (FP_X_DZ|FP_X_INV);
++#endif
+ fpsetmask (FP_X_DZ|FP_X_INV);
+ #endif
+