diff options
author | ryoon <ryoon> | 2011-04-06 11:27:59 +0000 |
---|---|---|
committer | ryoon <ryoon> | 2011-04-06 11:27:59 +0000 |
commit | 524df1797aea3a07d7144072a1d0481ed776cd43 (patch) | |
tree | b43115336d290f9fe5a51e405098fbda5f7e97df /shells/zsh | |
parent | bba07737cd14e10848daa7eec2ec93de76457661 (diff) | |
download | pkgsrc-524df1797aea3a07d7144072a1d0481ed776cd43.tar.gz |
* Add workaround for curses detection.
Diffstat (limited to 'shells/zsh')
-rw-r--r-- | shells/zsh/Makefile.common | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/shells/zsh/Makefile.common b/shells/zsh/Makefile.common index 86f917fdf39..8a5c3ed5e66 100644 --- a/shells/zsh/Makefile.common +++ b/shells/zsh/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.59 2011/04/05 15:03:44 ryoon Exp $ +# $NetBSD: Makefile.common,v 1.60 2011/04/06 11:27:59 ryoon Exp $ DISTNAME= zsh-${ZSH_VERSION} CATEGORIES= shells @@ -81,12 +81,13 @@ PLIST.terminfo= yes .endif ### curses +.if empty(MACHINE_PLATFORM:MNetBSD-[0-9]*) CHECK_BUILTIN.curses= yes .include "../../mk/curses.builtin.mk" .if !empty(USE_BUILTIN.curses:M[Yy][Ee][Ss]) PLIST.curses= yes .endif - +.endif ################################################################################ |