summaryrefslogtreecommitdiff
path: root/x11-fm/fsv
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 /x11-fm/fsv
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 'x11-fm/fsv')
-rw-r--r--x11-fm/fsv/files/patch-aa8
1 files changed, 5 insertions, 3 deletions
diff --git a/x11-fm/fsv/files/patch-aa b/x11-fm/fsv/files/patch-aa
index 16290b139175..77c45d722c16 100644
--- a/x11-fm/fsv/files/patch-aa
+++ b/x11-fm/fsv/files/patch-aa
@@ -1,5 +1,5 @@
---- src/fsv.c.orig Sun Feb 13 02:03:57 2000
-+++ src/fsv.c Sun Feb 13 02:06:19 2000
+--- src/fsv.c.orig Wed Jan 26 20:49:55 2000
++++ src/fsv.c Sun Aug 6 19:14:34 2000
@@ -26,6 +26,9 @@
#include "common.h"
#include "fsv.h"
@@ -21,12 +21,14 @@
/* Initialize global variables */
globals.fstree = NULL;
globals.history = NULL;
-@@ -311,6 +318,10 @@
+@@ -311,6 +318,12 @@
gtk_main( );
+#ifdef __FreeBSD__
++#ifndef __alpha__
+ fpresetsticky(FP_X_DZ|FP_X_INV);
++#endif
+ fpsetmask(FP_X_DZ|FP_X_INV);
+#endif
return 0;