From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23595 invoked by alias); 20 Jun 2007 21:01:15 -0000 Received: (qmail 23581 invoked by uid 22791); 20 Jun 2007 21:01:10 -0000 X-Spam-Status: No, hits=-2.5 required=5.0 tests=AWL,BAYES_00,DK_POLICY_SIGNSOME,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 20 Jun 2007 21:01:08 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.13.1/8.13.1) with ESMTP id l5KL14Ep002830; Wed, 20 Jun 2007 17:01:04 -0400 Received: from pobox.corp.redhat.com (pobox.corp.redhat.com [10.11.255.20]) by int-mx1.corp.redhat.com (8.13.1/8.13.1) with ESMTP id l5KL139r022219; Wed, 20 Jun 2007 17:01:03 -0400 Received: from [127.0.0.1] (sebastian-int.corp.redhat.com [172.16.52.221]) by pobox.corp.redhat.com (8.13.1/8.13.1) with ESMTP id l5KL11Lk018646; Wed, 20 Jun 2007 17:01:02 -0400 Message-ID: <467995A4.10407@redhat.com> Date: Thu, 21 Jun 2007 02:16:00 -0000 From: Andrew Cagney User-Agent: Thunderbird 1.5.0.12 (X11/20070530) MIME-Version: 1.0 To: Kris Van Hees CC: frysk@sourceware.org Subject: Re: Patch to the current tree (for this week's call) References: <20070620132347.GF3085@ca-server1.us.oracle.com> <20070620133052.GG3085@ca-server1.us.oracle.com> In-Reply-To: <20070620133052.GG3085@ca-server1.us.oracle.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact frysk-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: frysk-owner@sourceware.org X-SW-Source: 2007-q2/txt/msg00365.txt.bz2 Kris Van Hees wrote: > Oh, and to actuallyget past the first problem, you need to change the > glade file for the memory window to allow the full 64-bit range for the > from and to spin buttons. > Kris, how exactly? > Kris > > On Wed, Jun 20, 2007 at 06:23:48AM -0700, Kris Van Hees wrote: > >> Here is the patch that needs to be applied to the current CVS HEAD to >> get the same tree as what will be used for the demo. >> >> Cheers, >> Kris >> > > >> Index: frysk-gui/frysk/gui/srcwin/SourceWindow.java >> =================================================================== >> RCS file: /cvs/frysk/frysk-gui/frysk/gui/srcwin/SourceWindow.java,v >> retrieving revision 1.258 >> diff -r1.258 SourceWindow.java >> 2895c2895 >> < if (! (isa instanceof frysk.proc.IsaIA32 || isa instanceof frysk.proc.IsaPPC)) >> --- >> >>> if (! (isa instanceof frysk.proc.IsaIA32 || isa instanceof frysk.proc.IsaPPC || isa instanceof frysk.proc.IsaX8664)) >>> >> 2899c2899 >> < + " on 64-bit architectures! "); >> --- >> >>> + " on this architectures! "); >>> >> 2924c2924 >> < if (! (isa instanceof frysk.proc.IsaIA32 || isa instanceof frysk.proc.IsaPPC)) >> --- >> >>> if (! (isa instanceof frysk.proc.IsaIA32 || isa instanceof frysk.proc.IsaPPC || isa instanceof frysk.proc.IsaX8664)) >>> >> 2928c2928 >> < + " on 64-bit architectures! "); >> --- >> >>> + " on this architectures! "); >>> > >