From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25070 invoked by alias); 14 Jul 2009 03:34:04 -0000 Received: (qmail 25061 invoked by uid 22791); 14 Jul 2009 03:34:03 -0000 X-SWARE-Spam-Status: No, hits=-1.0 required=5.0 tests=AWL,BAYES_00,J_CHICKENPOX_23,RCVD_IN_DNSWL_LOW,RCVD_NUMERIC_HELO,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: sourceware.org Received: from main.gmane.org (HELO ciao.gmane.org) (80.91.229.2) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 14 Jul 2009 03:33:54 +0000 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1MQYm6-0005NN-Mb for insight@sources.redhat.com; Tue, 14 Jul 2009 03:33:50 +0000 Received: from 75.139.7.185 ([75.139.7.185]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 14 Jul 2009 03:33:50 +0000 Received: from gds by 75.139.7.185 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 14 Jul 2009 03:33:50 +0000 To: insight@sources.redhat.com From: Gene Smith Subject: Runtime error with Insight-6.8 with recent build Date: Tue, 14 Jul 2009 03:34:00 -0000 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1b3pre) Gecko/20090513 Fedora/3.0-2.3.beta2.fc11 Thunderbird/3.0b2 X-IsSubscribed: yes 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 X-SW-Source: 2009-q3/txt/msg00018.txt.bz2 This may already be noted on the list but I ran across it again when trying to run a 6.8 build on fedora 11 x86_64. Specifically, I see the error noted here when starting insight: http://bugs.gentoo.org/show_bug.cgi?id=225999 "Application initialization failed: Can't find a usable tk.tcl in the following directories: /usr/lib64/tcl8.5/tk8.5 /usr/lib64/tk8.5 /lib/tk8.5 /usr/library ... This probably means that tk wasn't installed properly." I must apply this patch and rebuild to fix it: http://bugs.gentoo.org/attachment.cgi?id=161242 --- generic/tk.h.orig 2008-02-06 16:31:40.000000000 +0100 +++ generic/tk.h 2008-07-24 08:21:46.000000000 +0200 @@ -635,17 +635,15 @@ * *--------------------------------------------------------------------------- */ -#define VirtualEvent (LASTEvent) -#define ActivateNotify (LASTEvent + 1) -#define DeactivateNotify (LASTEvent + 2) -#define MouseWheelEvent (LASTEvent + 3) -#define TK_LASTEVENT (LASTEvent + 4) +#define VirtualEvent (MappingNotify + 1) +#define ActivateNotify (MappingNotify + 2) +#define DeactivateNotify (MappingNotify + 3) +#define MouseWheelEvent (MappingNotify + 4) +#define TK_LASTEVENT (MappingNotify + 5) #define MouseWheelMask (1L << 28) - #define ActivateMask (1L << 29) #define VirtualEventMask (1L << 30) -#define TK_LASTEVENT (LASTEvent + 4) /* -gene