Re: [NEW] library/sort.imc

2004-02-12 Thread Leopold Toetsch
Jens Rieks [EMAIL PROTECTED] wrote: =head1 TITLE library/sort.imc - simple sort algorithm implemented in PIR ... =head1 TITLE dumper.imc - PIR version of Data::Dumper I've applied both. I've dropped the tests in t/pmc. Thanks, leo

Re: cvs commit: parrot/imcc/t/syn file.t

2004-02-12 Thread Jens Rieks
Am Donnerstag, 12. Februar 2004 08:18 schrieb Leopold Toetsch: [snip] eval { local $ENV{LANG} = 'en'; }; [snip] The test has to be located inside the eval, this construct has no effect. Might it be better to set LANG to 'C', instead of 'en'? 'en' in not installed on my system, but 'C' is in

Re: cvs commit: parrot/imcc/t/syn file.t

2004-02-12 Thread Leopold Toetsch
Jens Rieks [EMAIL PROTECTED] wrote: The test has to be located inside the eval, this construct has no effect. Might it be better to set LANG to 'C', instead of 'en'? Thanks, applied. leo

[PATCH] library/sdl_types.imc

2004-02-12 Thread Jens Rieks
Hi chromatic, here is a small pach for _SDL_loop that fixes a crashes that occurs if you press a key that has no entry in the key_events hash. jens diff -u -w -r1.5 sdl_types.imc --- library/sdl_types.imc 10 Feb 2004 19:31:49 - 1.5 +++ library/sdl_types.imc 12 Feb 2004 13:22:21 - @@

[PATCH] library/sdl_constants.imc

2004-02-12 Thread Jens Rieks
Hi again, here is a patch that adds all SDLK_ values. The values are added to sdl_keysyms, which is just an alias at the moment. The constants hash is know also stored as a global and is created only once. jens diff -u -w -r1.1 sdl_constants.imc --- library/sdl_constants.imc 10 Feb 2004

Build broken due to missing inet_aton on Solaris 8

2004-02-12 Thread Andrew Dougherty
A fresh checkout of parrot won't build for me due to the missing inet_aton symbol on Solaris 8. My perl5 configuration correctly records $Config{d_inetaton}=undef, but io_unix.o unconditionally expects inet_aton. cc -o parrot -L/usr/local/lib -R/usr/local/lib imcc/main.o \

Re: Build broken due to missing inet_aton on Solaris 8

2004-02-12 Thread Melvin Smith
At 10:26 AM 2/12/2004 -0500, Andrew Dougherty wrote: A fresh checkout of parrot won't build for me due to the missing inet_aton symbol on Solaris 8. My perl5 configuration correctly records $Config{d_inetaton}=undef, but io_unix.o unconditionally expects inet_aton. cc -o parrot -L/usr/local/lib

PATCH: Trivial typo patch for config/init/headers.pl

2004-02-12 Thread Art Haas
Hi. Add in a missing 'n'. Also, the file 'config/auto/byteorder.pl' is missing a newline at the end of the file. A simple open and save in vim would fix that up. Parrot builds nicely on my old machine. $ ./parrot -j ./examples/assembly/mops.pasm Iterations:1 Estimated ops: 2

Re: Build broken due to missing inet_aton on Solaris 8

2004-02-12 Thread Leopold Toetsch
Melvin Smith [EMAIL PROTECTED] wrote: I'm not sure why Leo changed it, but I'll put it back. I'm not sure either ;) Must have been in one of the cleanup or such patches, I had put in. Sorry, leo

Re: PATCH: Trivial typo patch for config/init/headers.pl

2004-02-12 Thread chromatic
On Thu, 2004-02-12 at 07:17, Art Haas wrote: Add in a missing 'n'. Also, the file 'config/auto/byteorder.pl' is missing a newline at the end of the file. A simple open and save in vim would fix that up. Thanks, applied. -- c

Re: Build broken due to missing inet_aton on Solaris 8

2004-02-12 Thread Melvin Smith
At 05:16 PM 2/12/2004 +0100, Leopold Toetsch wrote: Melvin Smith [EMAIL PROTECTED] wrote: I'm not sure why Leo changed it, but I'll put it back. I'm not sure either ;) Must have been in one of the cleanup or such patches, I had put in. Sorry, No problem. I haven't really taken a survey of which

Re: [PATCH] library/sdl_types.imc

2004-02-12 Thread chromatic
On Thu, 2004-02-12 at 05:26, Jens Rieks wrote: here is a small pach for _SDL_loop that fixes a crashes that occurs if you press a key that has no entry in the key_events hash. Thanks, applied! -- c

Re: [PATCH] library/sdl_constants.imc

2004-02-12 Thread chromatic
On Thu, 2004-02-12 at 05:57, Jens Rieks wrote: here is a patch that adds all SDLK_ values. The values are added to sdl_keysyms, which is just an alias at the moment. The constants hash is know also stored as a global and is created only once. Thanks, applied! -- c

Re: cvs commit: parrot/imcc/t/syn file.t

2004-02-12 Thread Adam Thomason
Hmm, this is still wrong. The error message isn't just a function of the locale; it's also dependent on the OS. AIX is now back to expecting No such file or directory courtesy of LANG=C when the imcc error is A file or directory in the path name does not exist. That's English, just not the

JIT branches under the Sun

2004-02-12 Thread Stephane Peiry
Hi All, While playing with JIT on Suns, I've found out that the following pasm code: set I1, 2 LOOP: sub I1, 1 ifI1, LOOP print end\n end never finishes.. that is: parrot -j loop.pasm hangs forever (never printing 'end') while the non-jitted