diff options
author | wiz <wiz> | 2000-11-02 03:15:14 +0000 |
---|---|---|
committer | wiz <wiz> | 2000-11-02 03:15:14 +0000 |
commit | f1fc650200ce65e5810a7d8e17676017f5082461 (patch) | |
tree | 55333338bc2c41db3e7d33191d0287c0917120ed /mail | |
parent | 47856fe3dd3804e499d692cbd10f8892b78fa809 (diff) | |
download | pkgsrc-f1fc650200ce65e5810a7d8e17676017f5082461.tar.gz |
NEED_NCURSES check doesn't have to be below bsd.pkg.mk inclusion any more
(still below bsd.prefs.mk inclusion, though)
Diffstat (limited to 'mail')
-rw-r--r-- | mail/mutt/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mail/mutt/Makefile b/mail/mutt/Makefile index 0f74739acce..c103494f388 100644 --- a/mail/mutt/Makefile +++ b/mail/mutt/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.56 2000/07/31 04:14:08 jlam Exp $ +# $NetBSD: Makefile,v 1.57 2000/11/02 03:15:14 wiz Exp $ DISTNAME= mutt-1.2.5i CATEGORIES= mail @@ -28,6 +28,10 @@ WRKSRC= ${WRKDIR}/${DISTNAME:S/i//} .include "../../mk/bsd.prefs.mk" +.if defined(NEED_NCURSES) && ${NEED_NCURSES} == "YES" +CONFIGURE_ARGS+= --with-curses=${LOCALBASE} +.endif + MUTT_USE_SSL?= YES .if defined(MUTT_USE_SSL) && ${MUTT_USE_SSL} == "YES" @@ -46,7 +50,3 @@ PLIST_SUBST+= LOCALEBASE=share .endif .include "../../mk/bsd.pkg.mk" - -.if defined(NEED_NCURSES) && ${NEED_NCURSES} == "YES" -CONFIGURE_ARGS+= --with-curses=${LOCALBASE} -.endif |