summaryrefslogtreecommitdiff
path: root/graphics/enblend-enfuse/patches/patch-ab
blob: 37b014f396fe7a871bd7d93903a6810998ba3d87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
$NetBSD: patch-ab,v 1.1.1.1 2009/09/01 14:39:28 adam Exp $

--- src/enfuse.cc.orig	2009-08-31 18:38:09.000000000 +0200
+++ src/enfuse.cc
@@ -62,8 +62,12 @@ extern "C" char *optarg;
 extern "C" int optind;
 
 #ifndef _MSC_VER
+#ifdef __NetBSD__
+//#include <ieeefp.h>
+#else
 #include <fenv.h>
 #endif
+#endif
 
 #include <signal.h>
 #include <stdlib.h>
@@ -279,8 +283,12 @@ int main(int argc, char** argv) {
     // See changes in vigra numerictraits.hxx
     _controlfp( _RC_NEAR, _MCW_RC );
 #else
+#ifdef __NetBSD__
+//    fpsetround(FE_TONEAREST);
+#else
     fesetround(FE_TONEAREST);
 #endif
+#endif
     
 #ifndef _WIN32
     sigemptyset(&SigintMask);