diff options
author | wiz <wiz> | 2009-08-08 16:23:48 +0000 |
---|---|---|
committer | wiz <wiz> | 2009-08-08 16:23:48 +0000 |
commit | 622641164053e86ed157d9dd4f56d4c1b8236015 (patch) | |
tree | 3484bd1329e9be70dd4c1fe928128a03579060ac /lang/gawk/patches | |
parent | be10bdc2ef55d746997c4b727ee5ab862db3a5ef (diff) | |
download | pkgsrc-622641164053e86ed157d9dd4f56d4c1b8236015.tar.gz |
Update to 3.1.7:
Changes from 3.1.6 to 3.1.7
---------------------------
1. Gawk now has support for z/OS (IBM S/390 architecture).
2. Gawk now handles multibyte strings better in [s]printf with field
widths and such.
3. Gawk now uses libsigsegv to print a message before core dumping. This
handles infinite recursion of an awk function a little better.
Use of the library can be disabled at configure time with the
--disable-libsigsegv option for unusual systems.
4. The handling of BINMODE is now somewhat more sane.
5. A getline from a directory is no longer fatal; instead it returns -1.
6. Per POSIX, special variable names (like FS) cannot be used as function
parameter names.
7. The new -O / --optimize option enables simple constant folding on
the parse tree during parsing. We hope that with time the number
of optimizations will increase.
8. Updated to the latest autotools: Autoconf 2.63, Automake 1.11,
Libtool 2.2.6a, and Gettext 0.17. Also latest Bison: 2.4.1.
9. Some improvement in testing for isinf / isnan in builtin.c.
10. Improved the handling of `a = a b c' to be more general.
11. Locale handling for %'d should now work on certain non-Unix /
non-Linux systems.
12. Lots of bugs fixed, see the ChangeLog for the details.
Diffstat (limited to 'lang/gawk/patches')
-rw-r--r-- | lang/gawk/patches/patch-ab | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lang/gawk/patches/patch-ab b/lang/gawk/patches/patch-ab index 5013b9ea7d6..64923e9f3d9 100644 --- a/lang/gawk/patches/patch-ab +++ b/lang/gawk/patches/patch-ab @@ -1,17 +1,17 @@ -$NetBSD: patch-ab,v 1.11 2007/11/02 07:18:00 adam Exp $ +$NetBSD: patch-ab,v 1.12 2009/08/08 16:23:48 wiz Exp $ ---- Makefile.in.orig 2007-10-22 08:52:01.000000000 +0200 +--- Makefile.in.orig 2009-07-21 19:29:59.000000000 +0000 +++ Makefile.in -@@ -148,7 +148,7 @@ CFLAGS = @CFLAGS@ +@@ -191,7 +191,7 @@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ -DEFS = -DDEFPATH=$(DEFPATH) -DHAVE_CONFIG_H -DGAWK -DLOCALEDIR="\"$(datadir)/locale\"" +DEFS = -DDEFPATH=$(DEFPATH) -DHAVE_CONFIG_H -DGAWK -DLOCALEDIR="\"$(prefix)/$(PKGLOCALEDIR)/locale\"" DEPDIR = @DEPDIR@ - ECHO_C = @ECHO_C@ - ECHO_N = @ECHO_N@ -@@ -890,9 +890,7 @@ install-exec-hook: + DSYMUTIL = @DSYMUTIL@ + DUMPBIN = @DUMPBIN@ +@@ -1044,9 +1044,7 @@ install-exec-hook: (cd $(DESTDIR)$(bindir); \ $(LN) gawk$(EXEEXT) gawk-$(VERSION)$(EXEEXT) 2>/dev/null ; \ $(LN) pgawk$(EXEEXT) pgawk-$(VERSION)$(EXEEXT) 2>/dev/null ; \ |