aboutsummaryrefslogtreecommitdiff
path: root/mbone/nte
diff options
context:
space:
mode:
authorBill Fenner <fenner@FreeBSD.org>2001-08-01 22:49:48 +0000
committerBill Fenner <fenner@FreeBSD.org>2001-08-01 22:49:48 +0000
commit394bd755a88551ee7c5d6a2d81e84d71cab894a3 (patch)
tree83ca38c9e61989918df976e53ebcf031f1fc462e /mbone/nte
parent8f1f1812fbea90b8489d7cd6de57e58a5ec9069b (diff)
downloadports-394bd755a88551ee7c5d6a2d81e84d71cab894a3.tar.gz
ports-394bd755a88551ee7c5d6a2d81e84d71cab894a3.zip
Make nte initialize TCL properly.
PR: ports/27219 Submitted by: Takeshi MUTOH <mutoh@info.nara-k.ac.jp>
Notes
Notes: svn path=/head/; revision=45716
Diffstat (limited to 'mbone/nte')
-rw-r--r--mbone/nte/files/patch-af16
1 files changed, 16 insertions, 0 deletions
diff --git a/mbone/nte/files/patch-af b/mbone/nte/files/patch-af
new file mode 100644
index 000000000000..b69819c4e244
--- /dev/null
+++ b/mbone/nte/files/patch-af
@@ -0,0 +1,16 @@
+--- src/ui_init.c.orig Wed Aug 1 15:25:41 2001
++++ src/ui_init.c Wed Aug 1 15:26:27 2001
+@@ -167,11 +167,11 @@
+ }
+ Tcl_SetVar(interp, "argv", buf, TCL_GLOBAL_ONLY);
+ #ifndef WIN32
+- if(Tk_Init(interp)!=TCL_OK)
++ if(Tcl_Init(interp)!=TCL_OK || Tk_Init(interp)!=TCL_OK)
+ {
+ /*I'd like to check this, but can't do anything sensible because
+ Tk_Init trys to read the TK_LIBRARY files, and I don't want it to!*/
+- fprintf(stderr, "nt: error opening display: %s\n", interp->result);
++ fprintf(stderr, "nt: error initializing tcl/tk: %s\n", interp->result);
+ exit(1);
+ }
+ #else