diff options
author | wiz <wiz@pkgsrc.org> | 2011-03-16 14:31:46 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2011-03-16 14:31:46 +0000 |
commit | b11b2671ed056d3e50b328578c4e20abc546b11b (patch) | |
tree | 46856f095a869a2993d63a2fa5a2c451024eac0e /devel | |
parent | c242f693df06aa76b66bc84c28b01f1bf68c94fa (diff) | |
download | pkgsrc-b11b2671ed056d3e50b328578c4e20abc546b11b.tar.gz |
Update to 1.4.16:
* Noteworthy changes in release 1.4.16 (2011-03-01) [stable]
** Fix regressions in the `index' builtin. On glibc platforms, this
avoids false positives from a strstr bug in glibc 2.9 through 2.12;
on many other platforms, it fixes two separate regressions, a false
positive introduced in 1.4.11 and a false negative in 1.4.15.
** A number of portability improvements inherited from gnulib.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/m4/Makefile | 4 | ||||
-rw-r--r-- | devel/m4/distinfo | 10 | ||||
-rw-r--r-- | devel/m4/patches/patch-aa | 14 |
3 files changed, 14 insertions, 14 deletions
diff --git a/devel/m4/Makefile b/devel/m4/Makefile index a81e159bbfb..956a6efa658 100644 --- a/devel/m4/Makefile +++ b/devel/m4/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.64 2010/09/03 07:39:45 wiz Exp $ +# $NetBSD: Makefile,v 1.65 2011/03/16 14:31:46 wiz Exp $ -DISTNAME= m4-1.4.15 +DISTNAME= m4-1.4.16 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU:=m4/} diff --git a/devel/m4/distinfo b/devel/m4/distinfo index 9a4f310c8ad..f01ca8195f2 100644 --- a/devel/m4/distinfo +++ b/devel/m4/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.32 2010/09/03 07:39:45 wiz Exp $ +$NetBSD: distinfo,v 1.33 2011/03/16 14:31:46 wiz Exp $ -SHA1 (m4-1.4.15.tar.gz) = 8ff0dd884809f75c93d6998455aa2661efd16a2f -RMD160 (m4-1.4.15.tar.gz) = 891bfaf6eb27ca42acde4b4708883a6f3621e43f -Size (m4-1.4.15.tar.gz) = 1559715 bytes -SHA1 (patch-aa) = fc7fc68865763098060ee11f0c13fc57956ec820 +SHA1 (m4-1.4.16.tar.gz) = 44b3ed8931f65cdab02aee66ae1e49724d2551a4 +RMD160 (m4-1.4.16.tar.gz) = 9b161898b9fb2fc44614e644a0e3bdab3ff1328b +Size (m4-1.4.16.tar.gz) = 1657870 bytes +SHA1 (patch-aa) = ef316620b49f78f46e9dea47032b0141814c1f43 diff --git a/devel/m4/patches/patch-aa b/devel/m4/patches/patch-aa index 94ec2134090..130f83a6c75 100644 --- a/devel/m4/patches/patch-aa +++ b/devel/m4/patches/patch-aa @@ -1,13 +1,13 @@ -$NetBSD: patch-aa,v 1.13 2010/03/25 04:39:01 jklos Exp $ +$NetBSD: patch-aa,v 1.14 2011/03/16 14:31:46 wiz Exp $ ---- lib/isnan.c.orig 2010-03-24 21:31:20.000000000 +0000 +--- lib/isnan.c.orig 2011-03-01 16:39:28.000000000 +0000 +++ lib/isnan.c -@@ -117,7 +117,7 @@ FUNC (DOUBLE x) - # else +@@ -118,7 +118,7 @@ FUNC (DOUBLE x) /* Be careful to not do any floating-point operation on x, such as x == x, because x may be a signaling NaN. */ --# if defined __SUNPRO_C || defined __DECC || (defined __sgi && !defined __GNUC__) -+# if defined __SUNPRO_C || defined __DECC || (defined __sgi && !defined __GNUC__) || defined __vax__ - /* The Sun C 5.0 compilers and the Compaq (ex-DEC) 6.4 compilers don't + # if defined __TINYC__ || defined __SUNPRO_C || defined __DECC \ +- || (defined __sgi && !defined __GNUC__) || defined __ICC ++ || (defined __sgi && !defined __GNUC__) || defined __ICC || defined __vax__ + /* The Sun C 5.0, Intel ICC 10.0, and Compaq (ex-DEC) 6.4 compilers don't recognize the initializers as constant expressions. The latter compiler also fails when constant-folding 0.0 / 0.0 even when constant-folding is |