summaryrefslogtreecommitdiff
path: root/shells/zsh-current/patches
diff options
context:
space:
mode:
authorryoon <ryoon@pkgsrc.org>2011-07-30 11:53:52 +0000
committerryoon <ryoon@pkgsrc.org>2011-07-30 11:53:52 +0000
commitc55ec6d06b5fcdde65228de520dd3587ada02dc0 (patch)
tree7a76811c3209e073ae1684c5819833307574a39b /shells/zsh-current/patches
parent6970017a4f1c90b2a2b44af142cc0ba12810ebc3 (diff)
downloadpkgsrc-c55ec6d06b5fcdde65228de520dd3587ada02dc0.tar.gz
Update to 4.3.12
Changes: Improved error handling in POSIX emulation, ${NAME:OFFSET:LENGTH} syntax supports negative LENGTHs, new parameter expansion flag (g:opts:) which escapes sequences like the echo and print builtins, the region_highlight array is now updated dynamically as the command line is edited and the zsh/parameter module has a new array $usergroups which contains the names of system groups.
Diffstat (limited to 'shells/zsh-current/patches')
-rw-r--r--shells/zsh-current/patches/patch-ab8
-rw-r--r--shells/zsh-current/patches/patch-ac10
-rw-r--r--shells/zsh-current/patches/patch-af4
-rw-r--r--shells/zsh-current/patches/patch-ag4
4 files changed, 13 insertions, 13 deletions
diff --git a/shells/zsh-current/patches/patch-ab b/shells/zsh-current/patches/patch-ab
index dd4176b8519..7a082c80efb 100644
--- a/shells/zsh-current/patches/patch-ab
+++ b/shells/zsh-current/patches/patch-ab
@@ -1,8 +1,8 @@
-$NetBSD: patch-ab,v 1.4 2011/04/05 13:54:24 ryoon Exp $
+$NetBSD: patch-ab,v 1.5 2011/07/30 11:53:52 ryoon Exp $
---- Src/zsh.h.orig 2010-12-14 10:09:52.000000000 +0000
+--- Src/zsh.h.orig 2011-05-16 15:49:11.000000000 +0000
+++ Src/zsh.h
-@@ -2105,6 +2105,7 @@ struct ttyinfo {
+@@ -2122,6 +2122,7 @@ struct ttyinfo {
#endif
};
@@ -10,7 +10,7 @@ $NetBSD: patch-ab,v 1.4 2011/04/05 13:54:24 ryoon Exp $
/* defines for whether tabs expand to spaces */
#if defined(HAVE_TERMIOS_H) || defined(HAVE_TERMIO_H)
#define SGTTYFLAG shttyinfo.tio.c_oflag
-@@ -2122,6 +2123,7 @@ struct ttyinfo {
+@@ -2139,6 +2140,7 @@ struct ttyinfo {
# endif
# endif
# endif
diff --git a/shells/zsh-current/patches/patch-ac b/shells/zsh-current/patches/patch-ac
index e2448eab2aa..76059cddc5e 100644
--- a/shells/zsh-current/patches/patch-ac
+++ b/shells/zsh-current/patches/patch-ac
@@ -1,8 +1,8 @@
-$NetBSD: patch-ac,v 1.5 2011/04/05 13:54:24 ryoon Exp $
+$NetBSD: patch-ac,v 1.6 2011/07/30 11:53:52 ryoon Exp $
---- configure.orig 2010-09-23 09:42:09.000000000 +0000
+--- configure.orig 2011-05-16 15:49:15.000000000 +0000
+++ configure
-@@ -20091,6 +20091,10 @@ $as_echo "$zsh_cv_sys_elf" >&6; }
+@@ -11443,6 +11443,10 @@ $as_echo "$zsh_cv_sys_elf" >&6; }
DLLD="${DLLD=$CC}"
DLLDARG=""
;;
@@ -13,7 +13,7 @@ $NetBSD: patch-ac,v 1.5 2011/04/05 13:54:24 ryoon Exp $
* )
DLLD="${DLLD=ld}"
DLLDARG=""
-@@ -20101,6 +20105,7 @@ $as_echo "$zsh_cv_sys_elf" >&6; }
+@@ -11453,6 +11457,7 @@ $as_echo "$zsh_cv_sys_elf" >&6; }
case "$host_os" in
hpux*) DLLDFLAGS="${DLLDFLAGS=-shared}" ;;
darwin*) DLCFLAGS="${DLCFLAGS=-fno-common}" ;;
@@ -21,7 +21,7 @@ $NetBSD: patch-ac,v 1.5 2011/04/05 13:54:24 ryoon Exp $
*) DLCFLAGS="${DLCFLAGS=-fPIC}" ;;
esac
else
-@@ -20115,7 +20120,7 @@ $as_echo "$zsh_cv_sys_elf" >&6; }
+@@ -11467,7 +11472,7 @@ $as_echo "$zsh_cv_sys_elf" >&6; }
fi
case "$host_os" in
osf*) DLLDFLAGS="${DLLDFLAGS=-shared -expect_unresolved '*'}" ;;
diff --git a/shells/zsh-current/patches/patch-af b/shells/zsh-current/patches/patch-af
index 127c2b72e30..4fc40287b70 100644
--- a/shells/zsh-current/patches/patch-af
+++ b/shells/zsh-current/patches/patch-af
@@ -1,6 +1,6 @@
-$NetBSD: patch-af,v 1.3 2008/12/22 02:18:51 uebayasi Exp $
+$NetBSD: patch-af,v 1.4 2011/07/30 11:53:52 ryoon Exp $
---- Config/defs.mk.in.orig 2008-03-13 18:44:39.000000000 +0900
+--- Config/defs.mk.in.orig 2011-04-19 15:05:00.000000000 +0000
+++ Config/defs.mk.in
@@ -81,6 +81,7 @@ TEXI2PDF = @TEXI2PDF@
diff --git a/shells/zsh-current/patches/patch-ag b/shells/zsh-current/patches/patch-ag
index 9db6869db86..829154ae70a 100644
--- a/shells/zsh-current/patches/patch-ag
+++ b/shells/zsh-current/patches/patch-ag
@@ -1,6 +1,6 @@
-$NetBSD: patch-ag,v 1.3 2008/12/22 02:18:51 uebayasi Exp $
+$NetBSD: patch-ag,v 1.4 2011/07/30 11:53:52 ryoon Exp $
---- Makefile.in.orig 2008-02-01 20:22:22.000000000 +0900
+--- Makefile.in.orig 2009-03-14 18:27:05.000000000 +0000
+++ Makefile.in
@@ -87,6 +87,7 @@ install.fns:
scriptdir="$(scriptdir)" \