public inbox for frysk@sourceware.org
 help / color / mirror / Atom feed
* Patch to the current tree (for this week's call)
@ 2007-06-20 13:28 Kris Van Hees
  2007-06-20 13:42 ` Kris Van Hees
  0 siblings, 1 reply; 3+ messages in thread
From: Kris Van Hees @ 2007-06-20 13:28 UTC (permalink / raw)
  To: frysk

[-- Attachment #1: Type: text/plain, Size: 139 bytes --]

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

[-- Attachment #2: PATCH --]
[-- Type: text/plain, Size: 1041 bytes --]

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! ");

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Patch to the current tree (for this week's call)
  2007-06-20 13:28 Patch to the current tree (for this week's call) Kris Van Hees
@ 2007-06-20 13:42 ` Kris Van Hees
  2007-06-21  2:16   ` Andrew Cagney
  0 siblings, 1 reply; 3+ messages in thread
From: Kris Van Hees @ 2007-06-20 13:42 UTC (permalink / raw)
  To: Kris Van Hees; +Cc: frysk

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

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! ");

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Patch to the current tree (for this week's call)
  2007-06-20 13:42 ` Kris Van Hees
@ 2007-06-21  2:16   ` Andrew Cagney
  0 siblings, 0 replies; 3+ messages in thread
From: Andrew Cagney @ 2007-06-21  2:16 UTC (permalink / raw)
  To: Kris Van Hees; +Cc: frysk

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! ");
>>>       
>
>   

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2007-06-20 21:01 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-06-20 13:28 Patch to the current tree (for this week's call) Kris Van Hees
2007-06-20 13:42 ` Kris Van Hees
2007-06-21  2:16   ` Andrew Cagney

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).