heko@ suggested that we could also build vim with maximum bloatage, so

I'm adding a huge FLAVOR to pass --with-features=huge to configure.
This commit is contained in:
lebel 2001-09-09 00:26:19 +00:00
parent f1cafbbaa6
commit 85909f42eb
2 changed files with 8 additions and 3 deletions

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.29 2001/09/08 22:40:20 lebel Exp $
# $OpenBSD: Makefile,v 1.30 2001/09/09 00:26:19 lebel Exp $
COMMENT= "vi clone, many additional features"
@ -27,7 +27,7 @@ PERMIT_DISTFILES_FTP= Yes
LIB_DEPENDS= iconv.2::converters/libiconv
FLAVORS= gtk athena motif no_x11 perl python
FLAVORS= huge gtk athena motif no_x11 perl python
FLAVOR?= gtk
CONFIGURE_STYLE= gnu
@ -39,6 +39,10 @@ SUBST_VARS= V
FLAVOR=no_x11
.endif
.if ${FLAVOR:L:Mhuge}
CONFIGURE_ARGS+=--with-features=huge
.endif
.if ${FLAVOR:L:Mperl}
CONFIGURE_ARGS+=--enable-perlinterp
.endif

View File

@ -18,6 +18,7 @@ Flavors:
athena - build using the Athena toolkit;
no_x11 - build without X11 support;
perl - build with Perl support;
python - build with Python support.
python - build with Python support;
huge - build with --with-features=huge.
WWW: ${HOMEPAGE}