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/files | |
parent | Add a "show-options" target. (diff) |
Re-enable WITH_TCL.
+ fixed TCL_DEFS processing in patch-configure
+ re-enabled Tcl support (using new bsd.tcl.mk)
+ supports Tcl 80, 82, 83, 84, 85 (WITH_TCL_VER=8x or VIM_WITH_TCL_VER=8x)
+ no support for threaded Tcl yet (because of the way how vim's configure
searches for Tcl, this needs more modifications)
PR: 112347
Submitted by: mm
Notes
Notes:
svn path=/head/; revision=204122
Diffstat (limited to 'editors/vim/files')
-rw-r--r-- | editors/vim/files/patch-configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/vim/files/patch-configure b/editors/vim/files/patch-configure index c368a63bbdfc..276eb1ce3dc4 100644 --- a/editors/vim/files/patch-configure +++ b/editors/vim/files/patch-configure @@ -3,6 +3,6 @@ @@ -4644,3 +4644,4 @@ echo "${ECHO_T}$try/tclConfig.sh" >&6 TCL_LIBS=`eval echo "$TCL_LIB_SPEC $TCL_LIBS"` - TCL_DEFS=`echo $TCL_DEFS | sed -e 's/\\\\ /\\\\X/g' | tr ' ' '\012' | sed -e '/^-[^D]/d' -e '/-D[^_]/d' -e 's/-D_/ -D_/' | tr '\012' ' ' | sed -e 's/\\\\X/\\\\ /g'` -+ TCL_DEFS=`echo $TCL_DEFS | tr ' ' '\012' | sed -e 's/\\\\ /\\\\X/g' -e '/^-[^D]/d' -e '/-D[^_]/d' -e 's/-D_/ -D_/' | tr '\012' ' ' | sed -e 's/\\\\X/\\\\ /g'` ++ TCL_DEFS=`echo $TCL_DEFS | sed -e 's/\\ /\\\\X/g' | tr ' ' '\012' | sed -e '/^-[^D]/d' -e '/-D[^_]/d' -e 's/-D_/ -D_/' | tr '\012' ' ' | sed -e 's/\\\\X/\\ /g'` + break |