diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2016-12-12 12:58:40 -0300 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2016-12-12 17:16:34 +0100 |
commit | 0e7e76ac201184a65210b5d6e013d745fa51889c (patch) | |
tree | 70bb7ff38d6354758ba4a9c528e2d3d978da688e /package/zsh/0001-configure-use-user-set-pcre-config.patch | |
parent | 3ed2ff972e6c9b674d6f56849d2cdbcc32db624b (diff) | |
download | buildroot-0e7e76ac201184a65210b5d6e013d745fa51889c.tar.gz buildroot-0e7e76ac201184a65210b5d6e013d745fa51889c.zip |
zsh: bump to version 5.3
And drop upstream patch.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/zsh/0001-configure-use-user-set-pcre-config.patch')
-rw-r--r-- | package/zsh/0001-configure-use-user-set-pcre-config.patch | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/package/zsh/0001-configure-use-user-set-pcre-config.patch b/package/zsh/0001-configure-use-user-set-pcre-config.patch deleted file mode 100644 index d4cf59bddd..0000000000 --- a/package/zsh/0001-configure-use-user-set-pcre-config.patch +++ /dev/null @@ -1,33 +0,0 @@ -From: Baruch Siach <baruch@tkos.co.il> -Date: Thu, 3 Mar 2016 23:14:39 +0200 -Subject: [PATCH] configure: use user set pcre-config - -Setting a non default configuration script location is common practice when -cross compiling, since the target library might need different flags. zsh -configure scripts allows the user to set pcre-config location but doesn't -actually use it. Fix this. - -Signed-off-by: Baruch Siach <baruch@tkos.co.il> ---- -Patch status: sent upstream -(http://www.zsh.org/mla/workers/2016/msg00619.html) - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/configure.ac b/configure.ac -index c3bd713c126a..9947b16066b6 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -925,7 +925,7 @@ fi - if test x$enable_pcre = xyes; then - dnl pcre-config should probably be employed here - dnl AC_SEARCH_LIBS(pcre_compile, pcre) -- LIBS="`pcre-config --libs` $LIBS" -+ LIBS="`$ac_cv_prog_PCRECONF --libs` $LIBS" - fi - - dnl --------------------- --- -2.7.0 - |