Re: Devel::Cover error from Storable

2004-12-30 Thread Kevin Scaldeferri
Following up on this for the sake of archives... Ultimately, I found that when I upgraded Storable to 1.13 this stopped happening. This seems to be true regardless of whether Devel::Cover uses the lock_ versions of the Storable subroutines, although that may be just luck. -kevin

Re: Win32 dynclasses build issues

2004-12-30 Thread Jonathan Worthington
"Leopold Toetsch" <[EMAIL PROTECTED]> wrote: Jonathan Worthington <[EMAIL PROTECTED]> wrote: OK, with the attached patch (which feels kinda hacky, but works) the build completes. That's the good news. Thanks, applied. ... The bad news is that almost all of the dynclasses tests fail. I assume tha

Re: Win32 dynclasses build issues

2004-12-30 Thread Leopold Toetsch
Jonathan Worthington <[EMAIL PROTECTED]> wrote: >> > OK, with the attached patch (which feels kinda hacky, but works) the build > completes. That's the good news. Thanks, applied. > ... The bad news is that almost all of the > dynclasses tests fail. I assume that the dynamic python lib has to e

Re: ponie-2 on x86 solaris 2.5.1

2004-12-30 Thread Leopold Toetsch
Andy Bach <[EMAIL PROTECTED]> wrote: > Hi. > I managed to finagle past the asctime_r errors by sticking: > print OUT <<'END'; > #define _POSIX_PTHREAD_SEMANTICS > END > in: > parrot/config/gen/config_h/feature_h.in Does it harm, if we unconditionally include this define or should it be defined

Re: ponie-2 on x86 solaris 2.5.1

2004-12-30 Thread Leopold Toetsch
Andy Bach <[EMAIL PROTECTED]> wrote: > I know its a sort of dead end OS but ... > ld: fatal: library -lrt: not found > parrot/config/init/hints/solaris.pl The following 3 lines ... > if ( $libs !~ /-lrt\b/ ) { > $libs .= ' -lrt'; >} ... obviously have to follow the scheme used in perl/hint

Re: ponie-2 on x86 solaris 2.5.1

2004-12-30 Thread Leopold Toetsch
Nicholas Clark <[EMAIL PROTECTED]> wrote: >> ops/io.ops: In function `Parrot_tell_i_i_p': >> ops/io.ops:507: warning: right shift count >= width of type > I suspect that it means that your PIOOFF_T is exactly 32 bits $ find include -name '*.h' | xargs grep PIOOFF_T include/parrot/io.h:typedef Pa

StringArray is deprecated (was: StringArray PMC)

2004-12-30 Thread Leopold Toetsch
Simon Glover <[EMAIL PROTECTED]> wrote: > Does anything actually use this PMC, or has it been completely superseded > by the ResizableStringArray and FixedStringArray PMCs? StringArray is a dummy wrapper for PerlArray and herewith deprecated. It'll be removed before the next release. > Simon

Re: [perl #33589] [PATCH] --no-lines and --help for ops2*.pl

2004-12-30 Thread Leopold Toetsch
Bernhard Schmalhofer <[EMAIL PROTECTED]> wrote: > This patch let's ops2c.pl and ops2pm.pl use Getopt::Long. The command line > options > '--help' and '--no-lines' are new. Thanks, applied. leo