pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/benchmarks/zelibm explicitely include <sys/types.h> be...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/b0a978c18d7f
branches:  trunk
changeset: 497701:b0a978c18d7f
user:      drochner <drochner%pkgsrc.org@localhost>
date:      Tue Aug 02 14:53:25 2005 +0000

description:
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:

 benchmarks/zelibm/distinfo         |   4 ++--
 benchmarks/zelibm/patches/patch-aa |  11 ++++++-----
 2 files changed, 8 insertions(+), 7 deletions(-)

diffs (41 lines):

diff -r 68f71fae990a -r b0a978c18d7f benchmarks/zelibm/distinfo
--- a/benchmarks/zelibm/distinfo        Tue Aug 02 14:48:43 2005 +0000
+++ b/benchmarks/zelibm/distinfo        Tue Aug 02 14:53:25 2005 +0000
@@ -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 -r 68f71fae990a -r b0a978c18d7f benchmarks/zelibm/patches/patch-aa
--- a/benchmarks/zelibm/patches/patch-aa        Tue Aug 02 14:48:43 2005 +0000
+++ b/benchmarks/zelibm/patches/patch-aa        Tue Aug 02 14:53:25 2005 +0000
@@ -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)
  {



Home | Main Index | Thread Index | Old Index