From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5599 invoked by alias); 6 Oct 2002 19:55:48 -0000 Mailing-List: contact insight-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: insight-owner@sources.redhat.com Received: (qmail 5589 invoked from network); 6 Oct 2002 19:55:47 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sources.redhat.com with SMTP; 6 Oct 2002 19:55:47 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.11.6/8.11.6) with ESMTP id g96JaMX13891 for ; Sun, 6 Oct 2002 15:36:22 -0400 Received: from pobox.corp.redhat.com (pobox.corp.redhat.com [172.16.52.156]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id g96Jtkf32663 for ; Sun, 6 Oct 2002 15:55:46 -0400 Received: from valrhona.uglyboxes.com (IDENT:W8F+q+PVQUPU/51MHk2JU9CbTqSLKRBy@vpn50-34.rdu.redhat.com [172.16.50.34]) by pobox.corp.redhat.com (8.11.6/8.11.6) with ESMTP id g96Jtj831338; Sun, 6 Oct 2002 15:55:45 -0400 Date: Sun, 06 Oct 2002 12:55:00 -0000 From: Keith Seitz X-X-Sender: keiths@valrhona.uglyboxes.com To: Christopher Faylor cc: insight@sources.redhat.com Subject: Re: [PATCH] Fix compilation problem In-Reply-To: <20021006004346.GA11690@redhat.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-SW-Source: 2002-q4/txt/msg00012.txt.bz2 On Sat, 5 Oct 2002, Christopher Faylor wrote: > I'm not sure how this one has survived for so long but it fails > on GCC 3.2. Because I keep forgetting to check it in? :-) > Ok to apply? Please do. Thanks. Keith > 2002-10-05 Christopher Faylor > > * win/tclWin32Dll.c (tclWinTCharEncoding): Remove 'static' since it is > declared in header as exportable extern. > > Index: win/tclWin32Dll.c > =================================================================== > RCS file: /cvs/uberbaum/tcl/win/tclWin32Dll.c,v > retrieving revision 1.6 > diff -u -p -r1.6 tclWin32Dll.c > --- win/tclWin32Dll.c 24 Sep 2002 18:37:11 -0000 1.6 > +++ win/tclWin32Dll.c 6 Oct 2002 00:41:07 -0000 > @@ -118,7 +118,7 @@ static TclWinProcs unicodeProcs = { > }; > > TclWinProcs *tclWinProcs; > -static Tcl_Encoding tclWinTCharEncoding; > +Tcl_Encoding tclWinTCharEncoding; > > /* > * The following declaration is for the VC++ DLL entry point. >