From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 67687 invoked by alias); 11 Mar 2015 13:34:25 -0000 Mailing-List: contact insight-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: insight-owner@sourceware.org Received: (qmail 67676 invoked by uid 89); 11 Mar 2015 13:34:24 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=0.1 required=5.0 tests=AWL,BAYES_00,SPF_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mail.datasphere.ch Received: from mail.datasphere.ch (HELO mail.datasphere.ch) (195.70.3.149) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Wed, 11 Mar 2015 13:34:23 +0000 Received: from dataspheresrv01.datasphere.ch (ForestDnsZones.datasphere.ch [195.70.3.151]) by mail.datasphere.ch (8.14.8/8.14.8) with ESMTP id t2BDY64f006739; Wed, 11 Mar 2015 14:34:09 +0100 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: RE: itcl in insight Date: Wed, 11 Mar 2015 13:34:00 -0000 Message-ID: In-Reply-To: <0BA358A6A1AD484EA0BECE9A36AA317546093250@rsex2.realsil.com.cn> References: <0BA358A6A1AD484EA0BECE9A36AA317546093250@rsex2.realsil.com.cn> From: "Patrick Monnerat" To: "Robert Bu" , X-IsSubscribed: yes X-SW-Source: 2015-q1/txt/msg00007.txt.bz2 =20 Robert Bu wrote: > Hi, Hi Robert, > I checked the config log in bundle/libgui. The configure script checked for tcl, tk. However, it seems that it does not check for itcl. Insight does not need itcl/itk development files at compile time anymore. Thus they are not checked. However you must have the runtime files installed at execution time. > Build and install is OK here on Redhat Enterprise 6.3 (RHEL-6.3, x86_64). When I run insight, it complains: > "Error: can't find package itcl 3.3" > I tried to install itcl 3.3. It is a quite old version and does not compile with my TCL (8.5.7). So I installed itcl 3.4.1. Can I tell insight to use my itcl 3.4.1? The "3.3" is now only the lower version you need. Since Feb 16, insight is more tolerant about versions and package name spellings. If you have git-pulled it recently, it can only be a path problem, not under control of insight. Try: $ wish % package require itcl ... <-- here you have either an error or the itcl installed version. % package require Itcl ... <-- here you have either an error or the Itcl installed version. If both fail, this is definitely a path problem in one of tcl or itcl RHEL package. Patrick