Revision: 77290
          http://sourceforge.net/p/brlcad/code/77290
Author:   starseeker
Date:     2020-09-30 19:30:13 +0000 (Wed, 30 Sep 2020)
Log Message:
-----------
init.c is the key place to specify the version

Modified Paths:
--------------
    brlcad/branches/thirdparty_rework/src/libtclcad/init.c

Modified: brlcad/branches/thirdparty_rework/src/libtclcad/init.c
===================================================================
--- brlcad/branches/thirdparty_rework/src/libtclcad/init.c      2020-09-30 
19:22:12 UTC (rev 77289)
+++ brlcad/branches/thirdparty_rework/src/libtclcad/init.c      2020-09-30 
19:30:13 UTC (rev 77290)
@@ -160,7 +160,7 @@
     tclcad_auto_path(interp);
 
     /* Initialize [incr Tcl] */
-    if (Tcl_Eval(interp, "package require Itcl") != TCL_OK) {
+    if (Tcl_Eval(interp, "package require Itcl 3") != TCL_OK) {
        if (tlog)
            bu_vls_printf(tlog, "Itcl init ERROR:\n%s\n", 
Tcl_GetStringResult(interp));
        return TCL_ERROR;
@@ -169,7 +169,7 @@
     /* Initialize [incr Tk] */
     if (init_gui) {
 #ifdef HAVE_TK
-       if (Tcl_Eval(interp, "package require Itk") != TCL_OK) {
+       if (Tcl_Eval(interp, "package require Itk 3") != TCL_OK) {
            if (tlog)
                bu_vls_printf(tlog, "Itk init ERROR:\n%s\n", 
Tcl_GetStringResult(interp));
            return TCL_ERROR;

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to