diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-05-17 23:51:15 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-05-17 23:51:15 +0000 |
commit | c1a9c78832478bfe3db472adaa51c719ff055b3c (patch) | |
tree | d88298a2a81a72208f216c2f2b6c25e8326b13b9 /editors | |
parent | - update to version 4.31.4 (diff) |
Unbreak WITH_TCL builds.
Submitted by: Michael Edenfield <kutulu@kutulu.org>
PR: 66434
Approved by: maintainer
Diffstat (limited to 'editors')
-rw-r--r-- | editors/vim/files/patch-configure | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/editors/vim/files/patch-configure b/editors/vim/files/patch-configure new file mode 100644 index 000000000000..fcf7c62f9bca --- /dev/null +++ b/editors/vim/files/patch-configure @@ -0,0 +1,11 @@ +--- auto/configure.orig Sun May 9 20:47:46 2004 ++++ auto/configure Sun May 9 20:46:02 2004 +@@ -1931,7 +1931,7 @@ + echo "$ac_t""$try/tclConfig.sh" 1>&6 + . $try/tclConfig.sh + TCL_LIBS=`eval echo "$TCL_LIB_SPEC $TCL_LIBS"` +- TCL_DEFS=`echo $TCL_DEFS | tr ' ' '\012' | sed -e '/^-[^D]/d' -e '/-D[^_]/d' -e 's/-D_/ -D_/' | tr -d '\012'` ++ TCL_DEFS=`echo $TCL_DEFS | tr ' ' '\012' | sed -e '/^[^-]/d' -e '/^-[^D]/d' -e '/-D[^_]/d' -e 's/-D_/ -D_/' | tr -d '\012'` + break + fi + done |