freebsd-ports/mbone/rtpmon/files/patch-Tcl.cc
Joseph Koshy 1952a6678b Fix a bug that removes a startup problem with rtpmon, namely erroring out
with 'invalid command name: tcl_findLibrary'.

Approved by:	Bill Fenner <fenner@freebsd.org>
2002-06-11 09:43:31 +00:00

10 lines
220 B
C++

--- Tcl.cc-- Mon Jun 10 16:59:27 2002
+++ Tcl.cc Mon Jun 10 16:59:31 2002
@@ -66,6 +66,7 @@
{
instance_.tcl_ = tcl;
instance_.application_ = application;
+ Tcl_Init(tcl);
}
void Tcl::evalf(const char* fmt, ...)