Re: New language: Parrot Common Lisp

2005-04-22 Thread Lars Balker Rasmussen
On Fri, Apr 22, 2005 at 07:59:57AM +0200, Uwe Voelker wrote: I'd like to announce the creation of the Parrot Common Lisp project, Let's port emacs to it :-) Erik Naggum, is that you? -- Lars Balker RasmussenConsult::Perl

Re: [PATCH] Re: Getting the grammar engine in (or a small task for the interested)

2004-11-20 Thread Lars Balker Rasmussen
len) +strcon(const unsigned char* s, int len) { Haven't looked at the code yet, but I'll just observe that Ansi/ISO C reserves the str[a-z].* namespace for its own use, which will cause noise with some compilers. Please use str_con or equivalent instead. -- Lars Balker Rasmussen

Re: Oops, here's the full parrotunit

2004-03-23 Thread Lars Balker Rasmussen
figuring out how and why). -- Lars Balker Rasmussen http://consult-perl.dk Consult::Perl

Re: [PATCH] The Return of the Priority DOD

2004-01-10 Thread Lars Balker Rasmussen
in parrot/config/init/hints/openbsd.pl :-) ) -- Lars Balker RasmussenConsult::Perl

gdbm_compat (Was: [PATCH] Re: Crash when joining multiple threads)

2004-01-06 Thread Lars Balker Rasmussen
-lc -lcrypt I have no idea why Debians perl is linked with gdbm_compat as well as gdbm. I suppose this is a patch :-) -- Lars Balker Rasmussen Consult::Perl

Re: [PATCH?] Error in t/src/list.t on FreeBSD

2004-01-05 Thread Lars Balker Rasmussen
of the interpreter setups in the old hash.t (marked with XXX), and whether it's needed now - seems to work fine without, but that may not be the point. I'll do the rest of them later, but I really should work on other stuff now :-) Cheers, -- Lars Balker Rasmussen

[PATCH?] Error in t/src/list.t on FreeBSD

2004-01-03 Thread Lars Balker Rasmussen
to just before the first pmc_new() in the second test in t/src/list.t fixed the problem. interpreter-DOD_block_level++; But I'm unsure if this is the right way to go about it, or rather, if the line above belongs in Parrot_init() or elsewhere. Cheers, -- Lars Balker Rasmussen

Re: [perl #24333] [PATCH] pthreads configure on FreeBSD

2003-10-28 Thread Lars Balker Rasmussen
Juergen Boemmels [EMAIL PROTECTED] writes: Lars Balker Rasmussen (via RT) [EMAIL PROTECTED] writes: The pthreads library seems to be missing on the FreeBSD 4.8 and 5.0 machines I have access to. I don't know what, if any, FreeBSD'en should happen to have that library... There are two ways

Re: floor op

2003-09-03 Thread Lars Balker Rasmussen
not sure if floor(-0.0) is meant to return -0.0 or not, but it does.) So I now I have a working my perlin noise (with turbulence) implementation written in pure pasm :-) Cool! So, how does it perform? ;) -- Lars Balker Rasmussen Consult::Perl Index

Re: Warnocks Dilemma (was Maybe [PATCH] move some stuff out of io.h to io_privat.h)

2003-08-28 Thread Lars Balker Rasmussen
) (error Can't encode a part with several charsets.)) -- Lars Balker Rasmussen Consult::Perl

Re: [PATCH] Add IMCC tests to make test (Revised)

2003-08-17 Thread Lars Balker Rasmussen
make test fails for me (and for some of the tinderboxen, it seems). -- Lars Balker Rasmussen Consult::Perl

Re: [perl #23029] [PATCH] -Wpadded annoying

2003-08-10 Thread Lars Balker Rasmussen
Lars Balker Rasmussen (via RT) [EMAIL PROTECTED] writes: # New Ticket Created by Lars Balker Rasmussen # Please include the string: [perl #23029] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt2/Ticket/Display.html?id=23029 -Wpadded

Re: [perl #23025] [PATCH] env.t doesn't test the env ops on solaris (and others)

2003-08-08 Thread Lars Balker Rasmussen
Lars Balker Rasmussen (via RT) [EMAIL PROTECTED] writes: # New Ticket Created by Lars Balker Rasmussen # Please include the string: [perl #23025] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt2/Ticket/Display.html?id=23025 There's

Re: [perl #23135] Build fails under Win32

2003-07-29 Thread Lars Balker Rasmussen
Vladimir Lipskiy [EMAIL PROTECTED] writes: if (-e jit/$cpuarch/core.jit and not $osname == 'MSWin32'){ ITYM: if (-e jit/$cpuarch/core.jit and $osname ne 'MSWin32') { -- Lars Balker Rasmussen Consult::Perl

Re: [CVS ci] make: print filenames only

2003-07-28 Thread Lars Balker Rasmussen
commands being executed. I agree. Ideally, the best way to avoid warnings is to use -Werror ;-) -- Lars Balker Rasmussen Consult::Perl

Re: [perl #23115] powerpc linux support

2003-07-25 Thread Lars Balker Rasmussen
have a strong suspicion that it would work anyway. However, I don't understand the configure system well enough to get it to let me use JIT. I may know the configure system enough to help you - but first, what does your myconfig file say? -- Lars Balker Rasmussen

Re: [perl #23025] [PATCH] env.t doesn't test the env ops on solaris (and others)

2003-07-24 Thread Lars Balker Rasmussen
Benjamin Goldberg [EMAIL PROTECTED] writes: Lars Balker Rasmussen wrote: However, now the 4th test fails on Solaris (and most likely other OS's witout setenv/unsetenv). This is because the test relies on a key disappearing from %ENV when it's been unsetenv'ed - this doesn't happen when using

[PATCH] core.ops split

2003-07-23 Thread Lars Balker Rasmussen
Balker Rasmussen Consult::Perl

Re: objects.t failures

2003-07-23 Thread Lars Balker Rasmussen
Simon Glover [EMAIL PROTECTED] writes: OK, I've committed it. I'll just confirm that FreeBSD/x86 now passes objects.t. -- Lars Balker Rasmussen Consult::Perl

Re: [perl #23025] [PATCH] env.t doesn't test the env ops on solaris (and others)

2003-07-23 Thread Lars Balker Rasmussen
Lars Balker Rasmussen (via RT) [EMAIL PROTECTED] writes: There's no reason to test for the presence of setenv/unsetenv in libc - these functions are emulated if not present. I'll just reiterate: Configures test for the presence of setenv and unsetenv should not cause env.t to to skip the env

Re: [perl #23027] [PATCH] Per-c-file flag handling in make

2003-07-22 Thread Lars Balker Rasmussen
? cflags.diff ? cflags.tar.gz ? coresplit.diff ? t.tar Index: config/gen/cflags/imcc.in === RCS file: /cvs/public/parrot/config/gen/cflags/imcc.in,v retrieving revision 1.2 diff -u -a -r1.2 imcc.in --- config/gen/cflags/imcc.in 22 Jul

Re: Making Parrot On Win32

2003-07-22 Thread Lars Balker Rasmussen
at the moment. Cheers, -- Lars Balker Rasmussen Consult::Perl

Re: [WIP PATCH] core.ops split-up

2003-07-21 Thread Lars Balker Rasmussen
,--- /dev/null,' coresplit.diff patch coresplit.diff -- Lars Balker Rasmussen Consult::Perl

Re: Abbreviation

2003-07-21 Thread Lars Balker Rasmussen
On Mon, Jul 21, 2003 at 10:28:26AM +0300, Vladimir Lipskiy wrote: In /parrot/docs/jit.pod: For moving registers from processor to parrot and vv, the BParrot_jit_emit_mov* functions have to be implemented. what does vv stand for? Vice versa, I presume. -- Lars Balker Rasmussen

Re: Small perl task for the interested

2003-07-21 Thread Lars Balker Rasmussen
was already in the patch already committed. Modifying the link-step the way Benjamin suggests is trivial, although I suggest we wait until the need arises. Cheers, -- Lars Balker Rasmussen Consult::Perl

Re: [perl #23028] t/op/stacks fails on FreeBSD/i386

2003-07-18 Thread Lars Balker Rasmussen
On Fri, Jul 18, 2003 at 12:04:39PM -0400, Simon Glover wrote: OK, this should be fixed in CVS Yup. -- Lars Balker RasmussenConsult::Perl

Re: [WIP PATCH] core.ops split-up

2003-07-18 Thread Lars Balker Rasmussen
Benjamin Goldberg [EMAIL PROTECTED] writes: (ChangeLog, Configure.pl, parrot.spec, and whatever else is really needed to build and distribute parrot (make.pl?)). Nothing is currently using make.pl, and it's way out of date compared to the configure system - delete it? -- Lars Balker Rasmussen

config/inter/progs.pl weirdness

2003-07-16 Thread Lars Balker Rasmussen
will break the build-process with these. $cc_warn=$args{lex} if defined $args{lex}; $cc_warn=$args{yacc}if defined $args{yacc}; Cheers, -- Lars Balker Rasmussen Consult::Perl

Re: Small perl task for the interested

2003-07-14 Thread Lars Balker Rasmussen
'+') { splice @ARGV, 1, 0, $option-[2]; } else { @ARGV = grep { $_ ne $option-[2] } @ARGV; } } } } print @ARGV\n; exec @ARGV; __END__ Cheers, -- Lars Balker Rasmussen Consult::Perl

Re: [perl #22925] [PATCH] setenv/unsetenv functions

2003-07-13 Thread Lars Balker Rasmussen
Leopold Toetsch [EMAIL PROTECTED] writes: Lars Balker Rasmussen [EMAIL PROTECTED] wrote: Since parrot currently can't compile on Solaris due to the absense of setenv/unsetenv in the Solaris libc, I've added tests for the functions, as well as a putenv-based implementation. Shouldn't

[PATCH] portability problems on FreeBSD

2003-07-11 Thread Lars Balker Rasmussen
exceptions.patch Description: Binary data malloc.patch Description: Binary data Makefile.patch Description: Binary data

Re: [PATCH] portability problems on FreeBSD

2003-07-11 Thread Lars Balker Rasmussen
Index: exceptions.c === RCS file: /cvs/public/parrot/exceptions.c,v retrieving revision 1.17 diff -u -a -r1.17 exceptions.c --- exceptions.c 10 Jul 2003 16:56:46 - 1.17 +++ exceptions.c 11 Jul 2003 13:29:01 - @@ -119,7 +119,7

Re: [PATCH] portability problems on FreeBSD

2003-07-11 Thread Lars Balker Rasmussen
Lars Balker Rasmussen [EMAIL PROTECTED] writes: Whoa, that didn't work too well. Let's try again: gcc on FreeBSD (and I'd imagine others) complains over an fprintf in exceptions.c. malloc.h is deprecated on FreeBSD 5, and will make various configuration tests fail. The following patch

Re: [PATCH] portability problems on FreeBSD

2003-07-11 Thread Lars Balker Rasmussen
Lars Balker Rasmussen [EMAIL PROTECTED] writes: Whoa, that didn't work too well. Let's try again: gcc on FreeBSD (and I'd imagine others) complains over an fprintf in exceptions.c. malloc.h is deprecated on FreeBSD 5, and will make various configuration tests fail. The following patch