diff options
author | drochner <drochner@pkgsrc.org> | 2005-08-02 14:53:25 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2005-08-02 14:53:25 +0000 |
commit | 95e182a0aabf1625a8cdf401d3a28a519863fde3 (patch) | |
tree | d0b7fbeb278c1a59e80b7e4b3e3afa937a48737a /benchmarks/zelibm | |
parent | 9a731576383c545b47df2d9501dcc45a2fca5462 (diff) | |
download | pkgsrc-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')
-rw-r--r-- | benchmarks/zelibm/distinfo | 4 | ||||
-rw-r--r-- | benchmarks/zelibm/patches/patch-aa | 11 |
2 files changed, 8 insertions, 7 deletions
diff --git a/benchmarks/zelibm/distinfo b/benchmarks/zelibm/distinfo index 85901f66a27..0a768d9852e 100644 --- a/benchmarks/zelibm/distinfo +++ b/benchmarks/zelibm/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.1.1.1 2005/07/27 17:06:53 drochner Exp $ +$NetBSD: distinfo,v 1.2 2005/08/02 14:53:25 drochner Exp $ SHA1 (zelibm.tar.gz) = 2fc4366ed466d766042b59c1ce303a1b53f722d3 Size (zelibm.tar.gz) = 17616 bytes -SHA1 (patch-aa) = f6ed33fc79d547cc559ba2343c160f18dd88e94d +SHA1 (patch-aa) = 117b5146284ff0becd918a2a81cc33ca0c1b6a93 SHA1 (patch-ab) = 066bfcb106c946fd706d221d5e5b8dd8e9c9ece8 SHA1 (patch-ac) = d7384d0c8878536057024253b281e9dd77936ea5 SHA1 (patch-ad) = 24cc1d6d60a283d1f3922fb1b5223f4f01caacf5 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) { |