diff options
author | marcus <marcus@FreeBSD.org> | 2002-05-31 04:11:32 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2002-05-31 04:11:32 +0000 |
commit | 2caee95eabd4827c789ad50966ae57785b324da9 (patch) | |
tree | 4ee4db0d65661cb5b60c96d6c4c4df8a7b686376 /graphics | |
parent | 6e5c4468095a6667272b81a49e86b50327689121 (diff) | |
download | FreeBSD-ports-2caee95eabd4827c789ad50966ae57785b324da9.zip FreeBSD-ports-2caee95eabd4827c789ad50966ae57785b324da9.tar.gz |
Really fix the build on alpha. Seems alpha does not have fpresetsticky.
Submitted by: beta
Tested by: kris (build test only)
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/sodipodi/files/patch-src_main.c | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/graphics/sodipodi/files/patch-src_main.c b/graphics/sodipodi/files/patch-src_main.c index e4fa667..7e0e3b8 100644 --- a/graphics/sodipodi/files/patch-src_main.c +++ b/graphics/sodipodi/files/patch-src_main.c @@ -1,5 +1,5 @@ ---- src/main.c.orig Thu May 30 10:26:44 2002 -+++ src/main.c Thu May 30 10:29:17 2002 +--- src/main.c.orig Sun Apr 15 16:27:51 2001 ++++ src/main.c Thu May 30 23:14:44 2002 @@ -17,7 +17,7 @@ #include <tree.h> /* libxml */ @@ -9,3 +9,12 @@ #endif #include "sodipodi-private.h" +@@ -357,7 +357,7 @@ + + } + +-#ifdef __FreeBSD__ ++#if defined(__FreeBSD__) && defined(__i386__) + fpresetsticky(FP_X_DZ|FP_X_INV); + fpsetmask(FP_X_DZ|FP_X_INV); + #endif |