diff options
author | Joseph Koshy <jkoshy@FreeBSD.org> | 2002-06-11 09:43:31 +0000 |
---|---|---|
committer | Joseph Koshy <jkoshy@FreeBSD.org> | 2002-06-11 09:43:31 +0000 |
commit | 1952a6678bc89094927cf31961c43bd4d2b94fc8 (patch) | |
tree | 4f49caeffd768946c545e25f90684afa9f49b75e /mbone | |
parent | 014b003851956aa47c4beeb3e1de4529d6b4e3dd (diff) | |
download | ports-1952a6678bc89094927cf31961c43bd4d2b94fc8.tar.gz ports-1952a6678bc89094927cf31961c43bd4d2b94fc8.zip |
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>
Notes
Notes:
svn path=/head/; revision=61100
Diffstat (limited to 'mbone')
-rw-r--r-- | mbone/rtpmon/files/patch-Tcl.cc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mbone/rtpmon/files/patch-Tcl.cc b/mbone/rtpmon/files/patch-Tcl.cc new file mode 100644 index 000000000000..558a417c31d5 --- /dev/null +++ b/mbone/rtpmon/files/patch-Tcl.cc @@ -0,0 +1,10 @@ +--- 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, ...) |