Re: Configure.pl failed

2003-07-25 Thread Vladimir Lipskiy
> - Original Message - > From: "Vladimir Lipskiy" <[EMAIL PROTECTED]> > To: "perl6-inrenals" <[EMAIL PROTECTED]> > Sent: Friday, July 25, 2003 2:53 AM > Subject: Configure.pl failed > > > > Hello, I was running the Configure.pl script and it failed. > > > > > > D:\build\parrot>perl configu

Re: cvs commit: parrot/jit/ppc exec_dep.h

2003-07-25 Thread Daniel Grunblatt
Yes, it's already fixed, thanks. On Friday 25 July 2003 17:55, Garrett Rooney wrote: > Daniel Grunblatt wrote: > > +# endif > > +# if EXEC_OS == DARWIN > > +# define EXEC_MACH_O > > +# endif > > +# if (EXEC_OS == FREENBSD) || (EXEC_OS == LINUX) > ># define EXEC_ELF >

Re: cvs commit: parrot/jit/ppc exec_dep.h

2003-07-25 Thread Garrett Rooney
Daniel Grunblatt wrote: +# endif +# if EXEC_OS == DARWIN +# define EXEC_MACH_O +# endif +# if (EXEC_OS == FREENBSD) || (EXEC_OS == LINUX) # define EXEC_ELF # endif Umm, I think you mean FREEBSD there ;-) -garrett

Re: [perl #23115] powerpc linux support

2003-07-25 Thread Daniel Grunblatt
On Thursday 24 July 2003 22:02, Arcady Goldmints wrote: > # New Ticket Created by "Arcady Goldmints" > # Please include the string: [perl #23115] > # in the subject line of all future correspondence about this issue. > # http://rt.perl.org/rt2/Ticket/Display.html?id=23115 > > > > Contrary to popu

Re: Configure.pl failed

2003-07-25 Thread K Stol
- Original Message - From: "Vladimir Lipskiy" <[EMAIL PROTECTED]> To: "perl6-inrenals" <[EMAIL PROTECTED]> Sent: Friday, July 25, 2003 2:53 AM Subject: Configure.pl failed > Hello, I was running the Configure.pl script and it failed. > > > --- D:\build\parrot>perl configure.pl > > Hello,

Re: [perl #23115] powerpc linux support

2003-07-25 Thread Lars Balker Rasmussen
"Arcady Goldmints" (via RT) <[EMAIL PROTECTED]> writes: > Contrary to popular belief, linux does run on things other than x86, > and people with powerpc machines do use OSs other than Darwin. It > seems, however, that the parrot configure system does not detect my > platform as JIT-capable, even th

Re: [perl #23115] powerpc linux support

2003-07-25 Thread Daniel Grunblatt
On Thursday 24 July 2003 22:02, Arcady Goldmints wrote: > # New Ticket Created by "Arcady Goldmints" > # Please include the string: [perl #23115] > # in the subject line of all future correspondence about this issue. > # http://rt.perl.org/rt2/Ticket/Display.html?id=23115 > > > > Contrary to popu

Re: [perl #23124] [PATCH] Standard filehandles in the interpreter are now PMCs.

2003-07-25 Thread Juergen Boemmels
Index: dod.c === RCS file: /cvs/public/parrot/dod.c,v retrieving revision 1.65 diff -u -r1.65 dod.c --- dod.c 23 Jul 2003 18:09:43 - 1.65 +++ dod.c 25 Jul 2003 12:50:57 - @@ -31,6 +31,7 @@ #endif static size_t find_common_m

[perl #23124] [PATCH] Standard filehandles in the interpreter are now PMCs.

2003-07-25 Thread Jürgen
# New Ticket Created by Jürgen Bömmels # Please include the string: [perl #23124] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt2/Ticket/Display.html?id=23124 > Hello, Next patch in the series of PIO refactoring. This time make the Standard handl

Re: Small perl task for the interested

2003-07-25 Thread Gordon Henriksen
On Friday, July 18, 2003, at 09:49 , Josh Wilmes wrote: At 12:48 on 07/14/2003 +0200, Lars Balker Rasmussen <[EMAIL PROTECTED]> wrote: I've taken this very simple approach to the problem. A perl-wrapperfor the CC lines in makefiles/root.in .c$(O) : $(PERL) tools/dev/cc_flags.pl $(

Re: Protocols

2003-07-25 Thread Gordon Henriksen
On Thursday, July 24, 2003, at 09:45 , Kurt Starsinic wrote: On Jul 24, chromatic wrote: On Thursday, July 24, 2003, at 05:28 PM, Benjamin Goldberg wrote: The problem with Java interfaces is that you have to rely on the library writer to have expected you to use an interface. Given the amount

Configure.pl failed

2003-07-25 Thread Vladimir Lipskiy
Hello, I was running the Configure.pl script and it failed. --- D:\build\parrot>perl configure.pl Hello, I'm Configure. My job is to poke and prod your system to figure out how to build Parrot. The process is completely automated, unless you passed in [snip] Determining what pmc files should

Re: approaching python

2003-07-25 Thread K Stol
- Original Message - From: "Michal Wallace" <[EMAIL PROTECTED]> To: "Luke Palmer" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, July 24, 2003 12:01 PM Subject: Re: approaching python > > On 24 Jul 2003, Luke Palmer wrote: > > Klass-Jan Stol writes: > >

Re: approaching python

2003-07-25 Thread K Stol
- Original Message - From: "Benjamin Goldberg" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 24, 2003 6:07 PM Subject: Re: approaching python > K Stol wrote: > > > > - Original Message - > > From: "Michal Wallace" <[EMAIL PROTECTED]> > > To: <[EMAIL PROTECTED]>

Re: passing arguments to tests

2003-07-25 Thread Andrew Savige
> #!/usr/bin/perl > use strict; > use warnings; > > sub my_fn { print "in sub my_fn, args='@_'\n" } > > # This happily calls my_fn(): the parameters received by my_fn are > # 'sample.t' and 'def'. But why? > > 'sample.t'->main::my_fn('def'); > > # ... yet this fails with: Can't call method "mai