diff options
Diffstat (limited to 'app-shells/zsh/files')
-rw-r--r-- | app-shells/zsh/files/digest-zsh-4.3.4 | 1 | ||||
-rw-r--r-- | app-shells/zsh/files/zsh-4.3.4-configure-changequote.patch | 25 |
2 files changed, 25 insertions, 1 deletions
diff --git a/app-shells/zsh/files/digest-zsh-4.3.4 b/app-shells/zsh/files/digest-zsh-4.3.4 index 535aa4ba10dc..7afc774d765a 100644 --- a/app-shells/zsh/files/digest-zsh-4.3.4 +++ b/app-shells/zsh/files/digest-zsh-4.3.4 @@ -1,4 +1,3 @@ -MD5 1a4ab09a9d75c5ae8585ad645406f27d zsh-4.3.4-doc.tar.bz2 2358063 RMD160 768ce8ca2860139428d27a0fedf5c0724967e444 zsh-4.3.4-doc.tar.bz2 2358063 SHA256 e74289f99479328b8bcee9c47ae07038e54437e860fb5487da57cfc8d1836777 zsh-4.3.4-doc.tar.bz2 2358063 MD5 8410a30e4f5c6160790bc3afc096424f zsh-4.3.4.tar.bz2 2374851 diff --git a/app-shells/zsh/files/zsh-4.3.4-configure-changequote.patch b/app-shells/zsh/files/zsh-4.3.4-configure-changequote.patch new file mode 100644 index 000000000000..2abad2462ee2 --- /dev/null +++ b/app-shells/zsh/files/zsh-4.3.4-configure-changequote.patch @@ -0,0 +1,25 @@ +diff -ur a/configure.ac b/configure.ac +--- a/configure.ac 2007-01-05 13:58:04 +0000 ++++ b/configure.ac 2007-08-16 09:17:29 +0100 +@@ -2249,6 +2249,10 @@ + zsh_cv_sys_elf=yes, + zsh_cv_sys_elf=no, + zsh_cv_sys_elf=yes)]) ++ ++ # We use [0-9]* in case statements, so need to change quoting ++ changequote(, ) ++ + DL_EXT="${DL_EXT=so}" + if test x$zsh_cv_sys_elf = xyes; then + case "$host" in +@@ -2352,6 +2356,10 @@ + esac + ;; + esac ++ ++ # Done with our shell code, so restore autotools quoting ++ changequote([, ]) ++ + AC_CACHE_CHECK(if your dlsym() needs a leading underscore, + zsh_cv_func_dlsym_needs_underscore, + [echo failed >conftestval && cat >conftest.c <<EOM |