diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2007-12-19 16:30:28 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2007-12-19 16:30:28 +0000 |
commit | 874cf5a8f25df0b59f5650b753967a7b29659781 (patch) | |
tree | 4e6fddb64e24f1c15df34af815363ac1bbab6783 /editors/vim/Makefile | |
parent | df3aa124c9ea27c27690ab1d3f8d7321293a098f (diff) |
Notes
Diffstat (limited to 'editors/vim/Makefile')
-rw-r--r-- | editors/vim/Makefile | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/editors/vim/Makefile b/editors/vim/Makefile index 0c24e44d287c..9443b06dcf68 100644 --- a/editors/vim/Makefile +++ b/editors/vim/Makefile @@ -56,7 +56,7 @@ MANLANG= "" ru.KOI8-R ru.UTF-8 pl.ISO8859-2 pl.UTF-8 pl fr.ISO8859-1 \ fr.UTF-8 fr it.ISO8859-1 it.UTF-8 it .if defined(PACKAGE_BUILDING) && !defined(LITE) -#WITH_TCL= yes +WITH_TCL= yes WITH_PERL= yes WITH_PYTHON= yes WITH_CSCOPE= yes @@ -64,10 +64,6 @@ WITH_EXUBERANT_CTAGS=yes WITH_LANG= yes .endif -.if defined(WITH_TCL) -BROKEN= Does not compile -.endif - .if defined(WITH_PYTHON) USE_PYTHON= yes MAKE_ARGS+= CONF_OPT_PYTHON="--enable-pythoninterp" @@ -78,6 +74,11 @@ USE_RUBY= yes MAKE_ARGS+= CONF_OPT_RUBY="--enable-rubyinterp" .endif +.if defined(WITH_TCL) +USE_TCL= 80+ +USE_TCL_NO_THREADS= yes +.endif + .if defined(WITH_PERL) WANT_PERL= yes .endif @@ -111,9 +112,7 @@ MAKE_ARGS+= CONF_OPT_PERL="--enable-perlinterp" .endif .if defined(WITH_TCL) -BUILD_DEPENDS= tclsh8.4:${PORTSDIR}/lang/tcl84 -LIB_DEPENDS= tcl84.1:${PORTSDIR}/lang/tcl84 -MAKE_ARGS+= CONF_OPT_TCL="--enable-tclinterp" +MAKE_ARGS+= CONF_OPT_TCL="--enable-tclinterp --with-tclsh="${TCLSH:S/${LOCALBASE}\/bin\///g}"" .endif .if !defined(WITHOUT_X11) |