summaryrefslogtreecommitdiff
path: root/benchmarks/zelibm/patches
diff options
context:
space:
mode:
authordrochner <drochner@pkgsrc.org>2005-08-02 14:53:25 +0000
committerdrochner <drochner@pkgsrc.org>2005-08-02 14:53:25 +0000
commit95e182a0aabf1625a8cdf401d3a28a519863fde3 (patch)
treed0b7fbeb278c1a59e80b7e4b3e3afa937a48737a /benchmarks/zelibm/patches
parent9a731576383c545b47df2d9501dcc45a2fca5462 (diff)
downloadpkgsrc-95e182a0aabf1625a8cdf401d3a28a519863fde3.tar.gz
explicitely include <sys/types.h> before <machine/ieee.h>
might fix build error on older NetBSD releases (seen in 1.6.2 bulk build)
Diffstat (limited to 'benchmarks/zelibm/patches')
-rw-r--r--benchmarks/zelibm/patches/patch-aa11
1 files changed, 6 insertions, 5 deletions
diff --git a/benchmarks/zelibm/patches/patch-aa b/benchmarks/zelibm/patches/patch-aa
index edd2a02c646..b8d3d9cd0f5 100644
--- a/benchmarks/zelibm/patches/patch-aa
+++ b/benchmarks/zelibm/patches/patch-aa
@@ -1,17 +1,18 @@
-$NetBSD: patch-aa,v 1.1.1.1 2005/07/27 17:06:53 drochner Exp $
+$NetBSD: patch-aa,v 1.2 2005/08/02 14:53:25 drochner Exp $
---- dbl2mpq.c.orig 2004-04-16 21:29:16.000000000 +0200
-+++ dbl2mpq.c 2004-04-16 21:52:52.000000000 +0200
-@@ -5,7 +5,7 @@
+--- dbl2mpq.c.orig 1998-11-24 06:06:54.000000000 +0100
++++ dbl2mpq.c
+@@ -5,7 +5,8 @@
#include <float.h>
#include <gmp.h>
-#include <ieee754.h>
++#include <sys/types.h>
+#include <machine/ieee.h>
#include <stdlib.h>
#include "zelibm.h"
-@@ -14,50 +14,50 @@
+@@ -14,50 +15,50 @@
void
extract_double (mpq_t r, double d)
{