The WITH_TCL option in editor/vim requires an unthreaded version of Tcl via the USE_TCL_NO_THREADS variable. I think this is not needed. I have successfully built vim against a threaded version of Tcl and run-tested some basic :tcldo stuff. I kindly ask you to check whether this is really needed, and in case it's not, to approve my patch. Fix: Patch attached with submission follows:
Responsible Changed From-To: freebsd-ports-bugs->obrien Over to maintainer (via the GNATS Auto Assign Tool)
Author: obrien Date: Wed Sep 12 15:40:26 2012 New Revision: 304151 URL: http://svn.freebsd.org/changeset/ports/304151 Log: Remove limitation on unthreaded version of Tcl. PR: 171158 Submitted by: gahr Modified: head/editors/vim/Makefile Modified: head/editors/vim/Makefile ============================================================================== --- head/editors/vim/Makefile Wed Sep 12 15:15:15 2012 (r304150) +++ head/editors/vim/Makefile Wed Sep 12 15:40:26 2012 (r304151) @@ -88,8 +88,7 @@ MAKE_ARGS+= CONF_OPT_RUBY="--enable-ruby .endif .if defined(WITH_TCL) -USE_TCL= 82+ -USE_TCL_NO_THREADS= yes +USE_TCL= 85+ .endif .if defined(WITH_LUA) _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed as r304151.