summaryrefslogtreecommitdiff
path: root/mbone/vat
diff options
context:
space:
mode:
authorhe <he@pkgsrc.org>1999-05-23 22:23:02 +0000
committerhe <he@pkgsrc.org>1999-05-23 22:23:02 +0000
commitf7b6a0f63d1e5862689ff4202bdc367e29aa95c4 (patch)
treeb3e7b868a8f185f2cd85f2a2c7e34bdf996343ca /mbone/vat
parentffd760c9f0f898aea3738a612a070c4f0fec7c50 (diff)
downloadpkgsrc-f7b6a0f63d1e5862689ff4202bdc367e29aa95c4.tar.gz
Fix and/or work around the
vat: invalid command name "tcl_findLibrary" error by calling Tcl_Init() from a suitable spot.
Diffstat (limited to 'mbone/vat')
-rw-r--r--mbone/vat/patches/patch-aj16
1 files changed, 16 insertions, 0 deletions
diff --git a/mbone/vat/patches/patch-aj b/mbone/vat/patches/patch-aj
new file mode 100644
index 00000000000..884375d2f76
--- /dev/null
+++ b/mbone/vat/patches/patch-aj
@@ -0,0 +1,16 @@
+$NetBSD: patch-aj,v 1.1 1999/05/23 22:23:02 he Exp $
+
+--- Tcl.cc.old Mon May 24 00:18:47 1999
++++ Tcl.cc Mon May 24 00:17:27 1999
+@@ -63,10 +63,11 @@
+
+ void Tcl::init(Tcl_Interp* tcl, const char* application)
+ {
+ instance_.tcl_ = tcl;
+ instance_.application_ = application;
++ Tcl_Init(tcl);
+ }
+
+ void Tcl::evalc(const char* s)
+ {
+ u_int n = strlen(s) + 1;