Greetings, I am not too sure about what has become of DYNIX/ptx since IBM bought out Sequent, but I found the following patch necessary to get perl@11238 to...
Peter Prymmer
pvhp@...
Jul 10, 2001 10:29 pm
89818
... I put this after the test: printf "\$n=%.32g 3.14159=%.32g\n", $n, 3.14159; and got: $n=3.1415900000000001 3.14159=3.14158999999999988 Does that help...
Hal Morris
hom00@...
Jul 10, 2001 11:27 pm
89819
... Ummm, I already backported all this. Its on CPAN. Why are we backporting the bleadperl version? As for the File::Spec problems, I just made a dependency...
schwern@...
Jul 10, 2001 11:42 pm
89820
This is a bug report for perl from antilyrical@..., generated with the help of perlbug 1.33 running under perl v5.6.1. The program below should copy...
antilyrical@...
Jul 11, 2001 1:03 am
89821
... Uhh, you backported ExtUtils::Constant (?), and you are asking why are we backporting the bleadperl version? Well, ahem, ExtUtils::Constant exists only in...
Jarkko Hietaniemi
jhi@...
Jul 11, 2001 1:34 am
89822
In the subclass tests, on Mac OS, DB_File is not getting subclassed properly. eval ' $X = tie(%h, "SubDB","dbbtree.tmp", O_RDWR|O_CREAT, 0640, $DB_BTREE ); ' ;...
Chris Nandor
pudge@...
Jul 11, 2001 1:39 am
89823
... Now, your new task is to find why does the same thing when compiled as a part of Perl fail...? Add debug printf() to the Time::HiRes code, for example. ...
Jarkko Hietaniemi
jhi@...
Jul 11, 2001 1:42 am
89824
... I found in my bleadperl copy that I had to say use File::Spec::Functions qw(catfile rel2abs); which of course made use File::Spec; unnecessary. -- $jhi++;...
Jarkko Hietaniemi
jhi@...
Jul 11, 2001 1:51 am
89825
... Moin, ... But (in praxis) there is no -0 in MBI. ;) (And I am glad for that, surely) ... Agreed. ... 0 ** 0 is 1, be definition. Not my fault ;) (I got...
Tels
tels@...
Jul 11, 2001 1:56 am
89826
... Moin, ... Ah, good ;) ... Only if you get underflows, which you never get with BigInt. ... It is 1. Knuth and others mention it. I never knew about it...
Tels
tels@...
Jul 11, 2001 1:56 am
89827
... I think so. It shows that the test fails because the internal parsing of "3.14159" no longer produces identical results to strtod("3.14159"). I note that...
Hugo van der Sanden
hv@...
Jul 11, 2001 2:03 am
89828
On DYNIX/ptx I had a perl 5.003_05 in my $PATH that repeatedly choked on trying to run the command: perl embed.pl for each and every file that was compiled...
Peter Prymmer
pvhp@...
Jul 11, 2001 2:32 am
89829
... -- ... Exactly! I tried perl@11238, and that test passes okay: Failed Test Stat Wstat Total Fail Failed List of Failed ... lib/1_compile.t...
Vadim Konovalov
watman@...
Jul 11, 2001 2:37 am
89830
... I am curious Mario - why did you not write that as follows?: use strict; my $mybytes; open(CHIPP, "$ARGV[0]") or die "\nFile Error\n"; binmode(CHIPP); ...
Peter Prymmer
pvhp@...
Jul 11, 2001 3:23 am
89831
Consider C<my $foo : Whacko unless 42;> and tell me how it parses without that hack. Larry wanted the colons to be optional, and that messed up statement...
Spider Boardman
spider@...
Jul 11, 2001 4:10 am
89832
... Thanks, applied. ... -- $jhi++; # http://www.iki.fi/jhi/ # There is this special biologist word we use for 'stable'. # It is 'dead'. -- Jack Cohen...
Jarkko Hietaniemi
jhi@...
Jul 11, 2001 4:58 am
89833
... Thanks, applied. ... -- $jhi++; # http://www.iki.fi/jhi/ # There is this special biologist word we use for 'stable'. # It is 'dead'. -- Jack Cohen...
Jarkko Hietaniemi
jhi@...
Jul 11, 2001 4:58 am
89834
... Thanks, applied. -- $jhi++; # http://www.iki.fi/jhi/ # There is this special biologist word we use for 'stable'. # It is 'dead'. -- Jack Cohen...
Jarkko Hietaniemi
jhi@...
Jul 11, 2001 4:59 am
89835
... Thanks, applied. -- $jhi++; # http://www.iki.fi/jhi/ # There is this special biologist word we use for 'stable'. # It is 'dead'. -- Jack Cohen...
Jarkko Hietaniemi
jhi@...
Jul 11, 2001 4:59 am
89836
... Thanks, applied. (With the File::Spec* nits I mentioned.) ... -- $jhi++; # http://www.iki.fi/jhi/ # There is this special biologist word we use for...
Jarkko Hietaniemi
jhi@...
Jul 11, 2001 5:00 am
89837
... Excellent, thanks, applied. -- $jhi++; # http://www.iki.fi/jhi/ # There is this special biologist word we use for 'stable'. # It is 'dead'. -- Jack Cohen...
Jarkko Hietaniemi
jhi@...
Jul 11, 2001 5:00 am
89838
... Thanks, applied. -- $jhi++; # http://www.iki.fi/jhi/ # There is this special biologist word we use for 'stable'. # It is 'dead'. -- Jack Cohen...
Jarkko Hietaniemi
jhi@...
Jul 11, 2001 5:06 am
89839
Both Tk and PDL create a vtable in the XS layer and store a pointer to it in a package variable. In the BOOT section of a second module you simply retrieve the...
Tim Jenness
t.jenness@...
Jul 11, 2001 8:28 am
89840
... I did some backporting because I didn't realise that you'd included ExtUtils::Constant to the MakeMaker bundle. I'd assumed that you'd only backported the...
Nicholas Clark
nick@...
Jul 11, 2001 9:07 am
89841
... Yes, silly me. It's probably chaff from a 2-way ediff cross-pollination between 2 copies of ExtUtils.t, one of which had been butchered several time until...
Nicholas Clark
nick@...
Jul 11, 2001 9:29 am
89842
Below is a patch that moves REGEXP out of PMOPs and into an PL_regex_padav. The offset is stored in PMOP->op_pmoffset. As soon as Perl_re_dup is finished...
Artur Bergman
artur@...
Jul 11, 2001 12:19 pm
89843
... I've done this on Solaris by expressing an explicit linker dependency between the calling XS module and the called XS module, that way when the calling...
Alan Burlison
Alan.Burlison@...
Jul 11, 2001 12:29 pm
89844
Has this been fixed in 5.6.1? ... From: Hans Ginzel [mailto:hans@...] Sent: Wednesday, July 11, 2001 6:25 AM To: rs+bugs@... Cc:...
Richard Soderberg
rs@...
Jul 11, 2001 1:44 pm
89845
... No. ... I updated now the whatever script to do hopefully the moral equivalent of the above. ... Well, the patch wouldn't hurt, just in case a pumpkin...
Jarkko Hietaniemi
jhi@...
Jul 11, 2001 2:12 pm
89846
... Might some of the pm flags belong in the REGEXP rather than in the PMOP? If so, I'd suggest moving them there. Overall, looks like good progress (assuming...