diff options
author | steve <steve@FreeBSD.org> | 2000-08-08 10:51:55 +0800 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 2000-08-08 10:51:55 +0800 |
commit | 490e5b387bf348b7a89b39e8404180c11df8d1fc (patch) | |
tree | be9abb63a96e8a03064bb88391273ed0d601580f /x11-fm/fsv | |
parent | e9b02aff4029a4e93457ff3e006517cdc6186565 (diff) | |
download | freebsd-ports-graphics-490e5b387bf348b7a89b39e8404180c11df8d1fc.tar.gz freebsd-ports-graphics-490e5b387bf348b7a89b39e8404180c11df8d1fc.tar.zst freebsd-ports-graphics-490e5b387bf348b7a89b39e8404180c11df8d1fc.zip |
Don't try to use fpresetsticky(3) on the Alpha as it doesn't exist there.
Diffstat (limited to 'x11-fm/fsv')
-rw-r--r-- | x11-fm/fsv/files/patch-aa | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/x11-fm/fsv/files/patch-aa b/x11-fm/fsv/files/patch-aa index 16290b13917..77c45d722c1 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; |