diff options
author | kim <kim@pkgsrc.org> | 2000-05-20 17:39:20 +0000 |
---|---|---|
committer | kim <kim@pkgsrc.org> | 2000-05-20 17:39:20 +0000 |
commit | f8ce8549c48e0481daabdca869ee99cb5bf7170e (patch) | |
tree | a32af6afd73a65efb71a81b42f40d26f69c8a450 /mail | |
parent | 5b4d2f4abffccda5c542237cb671913c42aa2297 (diff) | |
download | pkgsrc-f8ce8549c48e0481daabdca869ee99cb5bf7170e.tar.gz |
Make it possible to avoid SSL in mutt.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/mutt/Makefile | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/mail/mutt/Makefile b/mail/mutt/Makefile index 119c98895ed..281e1713a45 100644 --- a/mail/mutt/Makefile +++ b/mail/mutt/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.44 2000/05/13 07:03:38 tron Exp $ +# $NetBSD: Makefile,v 1.45 2000/05/20 17:39:21 kim Exp $ DISTNAME= mutt-1.2i CATEGORIES= mail @@ -18,12 +18,19 @@ RESTRICTED= "Contains PGP and SSL code" GNU_CONFIGURE= yes USE_GMAKE= yes -USE_SSL= yes CONFIGURE_ARGS+= --with-curses=${LOCALBASE} --with-exec-shell=/bin/ksh \ --with-docdir=${PREFIX}/share/doc/mutt \ - --with-ssl=${SSLBASE} \ --enable-pop --enable-imap +MUTT_USE_SSL?= YES + +.if defined(MUTT_USE_SSL) && ${MUTT_USE_SSL} == "YES" +USE_SSL= yes +CONFIGURE_ARGS+= --with-ssl=${SSLBASE} +.endif + +BUILD_DEFS+= MUTT_USE_SSL + ALL_TARGET= keymap_defs.h all LDFLAGS+= -s WRKSRC= ${WRKDIR}/${DISTNAME:S/i//} |