diff options
Diffstat (limited to 'shells/zsh-current/options.mk')
-rw-r--r-- | shells/zsh-current/options.mk | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/shells/zsh-current/options.mk b/shells/zsh-current/options.mk index db8222a85e9..9aedd214664 100644 --- a/shells/zsh-current/options.mk +++ b/shells/zsh-current/options.mk @@ -1,11 +1,22 @@ -# $NetBSD: options.mk,v 1.1 2006/03/11 13:20:15 uebayasi Exp $ +# $NetBSD: options.mk,v 1.2 2007/11/07 09:59:27 bjs Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.zsh PKG_SUPPORTED_OPTIONS= zsh-multibyte PKG_SUGGESTED_OPTIONS= +.if !defined(ZSH_STATIC) +PKG_SUPPORTED_OPTIONS+= pcre +.endif + .include "../../mk/bsd.options.mk" .if !empty(PKG_OPTIONS:Mzsh-multibyte) CONFIGURE_ARGS+= --enable-multibyte .endif + +.if !empty(PKG_OPTIONS:Mpcre) +PCRE_CONFIG= ${BUILDLINK_PREFIX.pcre}/bin/pcre-config +CONFIGURE_ARGS+= --with-pcre +CONFIGURE_ENV+= PCRE_CONFIG=${PCRE_CONFIG:Q} +. include "../../devel/pcre/buildlink3.mk" +.endif |