summaryrefslogtreecommitdiff
path: root/time/sunbird/patches/patch-dd
blob: 789525333de01107b9887ef091cc844283628937 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
$NetBSD: patch-dd,v 1.1 2006/06/27 11:11:52 joerg Exp $

--- content/xslt/src/base/txDouble.cpp.orig	2006-06-26 13:36:02.000000000 +0000
+++ content/xslt/src/base/txDouble.cpp
@@ -50,7 +50,7 @@
  */
 
 //A trick to handle IEEE floating point exceptions on FreeBSD - E.D.
-#ifdef __FreeBSD__
+#if defined(__FreeBSD__) || defined(__DragonFly__)
 #include <ieeefp.h>
 #ifdef __alpha__
 fp_except_t allmask = FP_X_INV|FP_X_OFL|FP_X_UFL|FP_X_DZ|FP_X_IMP;