mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-01-01 05:16:05 +01:00
29865: don't compile pcre if no pcre-config
This commit is contained in:
parent
31c422299d
commit
68d1c094db
2 changed files with 4 additions and 2 deletions
|
@ -1,5 +1,7 @@
|
|||
2011-10-26 Peter Stephenson <pws@csr.com>
|
||||
|
||||
* 29865: Src/Modules/pcre.mdd: don't compile if no pcre-config.
|
||||
|
||||
* 29859: Src/Zle/Complete.c: compadd handles its own options.
|
||||
|
||||
2011-10-24 Peter Stephenson <pws@csr.com>
|
||||
|
@ -15504,5 +15506,5 @@
|
|||
|
||||
*****************************************************
|
||||
* This is used by the shell to define $ZSH_PATCHLEVEL
|
||||
* $Revision: 1.5485 $
|
||||
* $Revision: 1.5486 $
|
||||
*****************************************************
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name=zsh/pcre
|
||||
link=`if test x$enable_pcre = xyes; then echo dynamic; else echo no; fi`
|
||||
link=`if test x$enable_pcre = xyes && (pcre-config --version >/dev/null 2>/dev/null); then echo dynamic; else echo no; fi`
|
||||
load=no
|
||||
|
||||
autofeatures="b:pcre_compile b:pcre_study b:pcre_match"
|
||||
|
|
Loading…
Reference in a new issue