diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2005-10-30 06:39:13 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2005-10-30 06:39:13 +0000 |
commit | dbfb941e1738a65099f163df5ca5d772b95b2e79 (patch) | |
tree | f6fdb03d5ea28a98474e897f00f2cb0e2688019f /editors | |
parent | Bidwatcher was using the FILE type without including <cstdio>. (diff) |
Desupport perl 5.8.
Notes
Notes:
svn path=/head/; revision=146720
Diffstat (limited to 'editors')
-rw-r--r-- | editors/vim5/Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/editors/vim5/Makefile b/editors/vim5/Makefile index 9b3d00c52628..61611adfe548 100644 --- a/editors/vim5/Makefile +++ b/editors/vim5/Makefile @@ -24,7 +24,7 @@ COMMENT= Vi "workalike", with many additional features .if defined(PACKAGE_BUILDING) && !defined(LITE) BUILD_DEPENDS= tclsh8.0:${PORTSDIR}/lang/tcl80 LIB_DEPENDS= tcl80.1:${PORTSDIR}/lang/tcl80 -USE_PERL5= yes +#USE_PERL5= yes .endif LATEST_LINK?= vim5 @@ -62,7 +62,7 @@ MAKE_ARGS+= CONF_OPT_GUI="--enable-gui=no --without-x --enable-multibyte" .endif # WITHOUT_X11 .if defined(PACKAGE_BUILDING) -MAKE_ARGS+= CONF_OPT_PERL="--enable-perlinterp --enable-pythoninterp --enable-tclinterp --enable-cscope" +MAKE_ARGS+= CONF_OPT_PERL="--enable-pythoninterp --enable-tclinterp --enable-cscope" .endif .else # LITE @@ -73,10 +73,6 @@ MAKE_ARGS+= CONF_OPT_PERL="--disable-perlinterp --disable-pythoninterp --disable .include <bsd.port.pre.mk> -.if ${PERL_LEVEL} >= 500800 -BROKEN= "Does not compile with perl 5.8" -.endif - pre-build: @(cd ${WRKSRC}; ${MAKE} distclean) |