pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/devel/m4 Add patch from Bruno Haible (upstream) fixing...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/b2f085d23a07
branches:  trunk
changeset: 540979:b2f085d23a07
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Sun Apr 13 00:51:59 2008 +0000

description:
Add patch from Bruno Haible (upstream) fixing two of the included
gnulib tests that were broken on NetBSD-4.99.58/amd64.

Bump PKGREVISION.

diffstat:

 devel/m4/Makefile         |   3 ++-
 devel/m4/distinfo         |   3 ++-
 devel/m4/patches/patch-aa |  26 ++++++++++++++++++++++++++
 3 files changed, 30 insertions(+), 2 deletions(-)

diffs (53 lines):

diff -r 6a82b0186632 -r b2f085d23a07 devel/m4/Makefile
--- a/devel/m4/Makefile Sat Apr 12 22:42:57 2008 +0000
+++ b/devel/m4/Makefile Sun Apr 13 00:51:59 2008 +0000
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.54 2008/04/12 22:42:59 jlam Exp $
+# $NetBSD: Makefile,v 1.55 2008/04/13 00:51:59 wiz Exp $
 
 DISTNAME=      m4-1.4.11
+PKGREVISION=   1
 CATEGORIES=    devel
 MASTER_SITES=  ${MASTER_SITE_GNU:=m4/}
 
diff -r 6a82b0186632 -r b2f085d23a07 devel/m4/distinfo
--- a/devel/m4/distinfo Sat Apr 12 22:42:57 2008 +0000
+++ b/devel/m4/distinfo Sun Apr 13 00:51:59 2008 +0000
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.21 2008/04/11 06:08:43 wiz Exp $
+$NetBSD: distinfo,v 1.22 2008/04/13 00:51:59 wiz Exp $
 
 SHA1 (m4-1.4.11.tar.gz) = 4d6b7f6344faee39f55af397c25f3e7ad13b6fcb
 RMD160 (m4-1.4.11.tar.gz) = 3689d9681cf9d2effbf87a3202cea68a75ebcec2
 Size (m4-1.4.11.tar.gz) = 1168840 bytes
+SHA1 (patch-aa) = 31aed81ffd1ea40d688ff89786fa72d95a13d422
diff -r 6a82b0186632 -r b2f085d23a07 devel/m4/patches/patch-aa
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/m4/patches/patch-aa Sun Apr 13 00:51:59 2008 +0000
@@ -0,0 +1,26 @@
+$NetBSD: patch-aa,v 1.9 2008/04/13 00:51:59 wiz Exp $
+
+2008-04-12  Bruno Haible  <bruno%clisp.org@localhost>
+
+        * lib/fpucw.h: Enable the definitions also for x86_64.
+        Needed for NetBSD/x86_64.
+        Reported by Thomas Klausner <tk%giga.or.at@localhost>.
+
+--- lib/fpucw.h.orig   2007-12-01 20:55:20.000000000 +0000
++++ lib/fpucw.h
+@@ -1,5 +1,5 @@
+ /* Manipulating the FPU control word.
+-   Copyright (C) 2007 Free Software Foundation, Inc.
++   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+    Written by Bruno Haible <bruno%clisp.org@localhost>, 2007.
+ 
+    This program is free software: you can redistribute it and/or modify
+@@ -61,7 +61,7 @@
+  */
+ 
+ /* Inline assembler like this works only with GNU C.  */
+-#if defined __i386__ && defined __GNUC__
++#if (defined __i386__ || defined __x86_64__) && defined __GNUC__
+ 
+ typedef unsigned short fpucw_t; /* glibc calls this fpu_control_t */
+ 



Home | Main Index | Thread Index | Old Index