summaryrefslogtreecommitdiff
path: root/textproc/gsed/patches
diff options
context:
space:
mode:
authorwiz <wiz>2007-03-08 18:53:56 +0000
committerwiz <wiz>2007-03-08 18:53:56 +0000
commit2d91939506ee89137edec14a0a07123c202b3c14 (patch)
tree8ed5ea896ae8b3024e5a8b14e58df0a64792d7ee /textproc/gsed/patches
parent28a6b1b41a0a69c04b10bb64ab228cf46e9aae14 (diff)
downloadpkgsrc-2d91939506ee89137edec14a0a07123c202b3c14.tar.gz
Update to 4.1.5:
Sed 4.1.5 * fix parsing of a negative character class not including a closed bracket, like [^]] or [^]a-z]. * fix parsing of [ inside an y command, like y/[/A/. * output the result of commands a, r, R when a q command is found. ---------------------------------------------------------------------------- Sed 4.1.4 * \B correctly means "not on a word boundary" rather than "inside a word" * bugfixes for platform without internationalization * more thorough testing framework for tarballs (`make full-distcheck') ---------------------------------------------------------------------------- Sed 4.1.3 * regex addresses do not use leftmost-longest matching. In other words, /.\+/ only looks for a single character, and does not try to find as many of them as possible like it used to do. * added a note to BUGS and the manual about changed interpretation of `s|abc\|def||', and about localization issues. * fixed --disable-nls build problems on Solaris. * fixed `make check' in non-English locales. * `make check' tests the regex library by default if the included regex is used (regex tests had to be enabled separately up to now). ---------------------------------------------------------------------------- Sed 4.1.2 * fix bug in 'y' command in multi-byte character sets * fix severe bug in parsing of ranges with an embedded open bracket * fix off-by-one error when printing a "bad command" error
Diffstat (limited to 'textproc/gsed/patches')
-rw-r--r--textproc/gsed/patches/patch-aa13
-rw-r--r--textproc/gsed/patches/patch-ac12
-rw-r--r--textproc/gsed/patches/patch-ad8
-rw-r--r--textproc/gsed/patches/patch-ae13
4 files changed, 17 insertions, 29 deletions
diff --git a/textproc/gsed/patches/patch-aa b/textproc/gsed/patches/patch-aa
deleted file mode 100644
index 034dfac2e73..00000000000
--- a/textproc/gsed/patches/patch-aa
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-aa,v 1.2 2003/06/14 00:04:56 grant Exp $
-
---- configure.orig Fri Apr 11 16:21:09 2003
-+++ configure
-@@ -5257,7 +5257,7 @@ else
- fi
-
-
--: ${TEXI2HTML=texi2html -monolithic}
-+TEXI2HTML="texi2html -monolithic"
-
-
- echo "$as_me:$LINENO: checking how to build HTML documentation" >&5
diff --git a/textproc/gsed/patches/patch-ac b/textproc/gsed/patches/patch-ac
deleted file mode 100644
index 3b4697f04de..00000000000
--- a/textproc/gsed/patches/patch-ac
+++ /dev/null
@@ -1,12 +0,0 @@
-$NetBSD: patch-ac,v 1.3 2004/07/07 11:33:10 seb Exp $
-
---- intl/Makefile.in.orig 2004-01-07 13:57:35.000000000 +0000
-+++ intl/Makefile.in
-@@ -37,6 +37,7 @@ gettextsrcdir = $(datadir)/gettext/intl
- aliaspath = $(localedir)
- subdir = intl
-
-+install_sh = @install_sh@
- INSTALL = @INSTALL@
- INSTALL_DATA = @INSTALL_DATA@
- mkinstalldirs = $(mkdir_p)
diff --git a/textproc/gsed/patches/patch-ad b/textproc/gsed/patches/patch-ad
index b668e2c672e..3b6f279f8d5 100644
--- a/textproc/gsed/patches/patch-ad
+++ b/textproc/gsed/patches/patch-ad
@@ -1,12 +1,12 @@
-$NetBSD: patch-ad,v 1.3 2004/07/07 11:33:10 seb Exp $
+$NetBSD: patch-ad,v 1.4 2007/03/08 18:53:57 wiz Exp $
---- po/Makefile.in.in.orig 2004-06-29 18:11:31.000000000 +0000
+--- po/Makefile.in.in.orig 2004-11-09 18:04:18.000000000 +0000
+++ po/Makefile.in.in
-@@ -26,6 +26,7 @@ datadir = @datadir@
+@@ -24,6 +24,7 @@ datadir = @datadir@
localedir = $(datadir)/locale
gettextsrcdir = $(datadir)/gettext/po
+install_sh = @install_sh@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
- mkinstalldirs = $(mkdir_p)
+ MKINSTALLDIRS = @MKINSTALLDIRS@
diff --git a/textproc/gsed/patches/patch-ae b/textproc/gsed/patches/patch-ae
new file mode 100644
index 00000000000..c3a1c07785f
--- /dev/null
+++ b/textproc/gsed/patches/patch-ae
@@ -0,0 +1,13 @@
+$NetBSD: patch-ae,v 1.3 2007/03/08 18:53:58 wiz Exp $
+
+--- lib/regex_internal.h.orig 2005-12-06 08:50:56.000000000 +0000
++++ lib/regex_internal.h
+@@ -410,7 +410,7 @@ static unsigned int re_string_context_at
+ #define re_string_skip_bytes(pstr,idx) ((pstr)->cur_idx += (idx))
+ #define re_string_set_index(pstr,idx) ((pstr)->cur_idx = (idx))
+
+-#include <alloca.h>
++#include <stdlib.h>
+
+ #ifndef _LIBC
+ # if HAVE_ALLOCA