diff options
author | wiz <wiz> | 2000-11-02 03:15:14 +0000 |
---|---|---|
committer | wiz <wiz> | 2000-11-02 03:15:14 +0000 |
commit | 429fc9bdbc2405cc11e509883468d47eb9e50805 (patch) | |
tree | 55333338bc2c41db3e7d33191d0287c0917120ed /mail/mutt | |
parent | f24f32131ba07647b7bfa627e64cbb960c8f675e (diff) | |
download | pkgsrc-429fc9bdbc2405cc11e509883468d47eb9e50805.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/mutt')
-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 |