summaryrefslogtreecommitdiff
path: root/devel/m4/patches
diff options
context:
space:
mode:
authorwiz <wiz>2011-03-16 14:31:46 +0000
committerwiz <wiz>2011-03-16 14:31:46 +0000
commit9d6da3dc24b934fe82aecc2953fe19b52a3ae853 (patch)
tree46856f095a869a2993d63a2fa5a2c451024eac0e /devel/m4/patches
parentcd47301c4b893d8423c57f0faab4c90b609e4cfe (diff)
downloadpkgsrc-9d6da3dc24b934fe82aecc2953fe19b52a3ae853.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/m4/patches')
-rw-r--r--devel/m4/patches/patch-aa14
1 files changed, 7 insertions, 7 deletions
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