diff options
author | Roy Marples <uberlord@gentoo.org> | 2007-08-16 09:52:54 +0000 |
---|---|---|
committer | Roy Marples <uberlord@gentoo.org> | 2007-08-16 09:52:54 +0000 |
commit | 0e05124771eca716d4f232822ad7b5a2f4e8a985 (patch) | |
tree | b140e81eb442ae485e3a3044f00f0d4e95e2268b /app-shells/zsh/files | |
parent | ppc stable (diff) | |
download | historical-0e05124771eca716d4f232822ad7b5a2f4e8a985.tar.gz historical-0e05124771eca716d4f232822ad7b5a2f4e8a985.tar.bz2 historical-0e05124771eca716d4f232822ad7b5a2f4e8a985.zip |
Fix configure.ac to quote correctly, #188930 thanks to Mike Frysigner.
Hard depend on ncurses as it's not optional.
Package-Manager: portage-2.1.3.5
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 |