"Carl Edwards" <[EMAIL PROTECTED]> writes:
> >I'd really like to see those of you using Solaris
> >and RedHat tell me if you can compile without trouble.
>
> Solaris 2.5.1
> perl 5.005_03
> gcc 2.95.2
Hey Carl,
Thanks for the information.
> I've also included some trivial changes to
> DOMParser.pm that 'use strict;' complained
> about.
Great, I fixed those.
> I tried all the programs in the samples
> directory on the personal.xml file using
> the installed XML::Xerces package and they
> all worked fine.
I'm a little concerned about some of the output:
> 'PREREQ_PM' is not a known MakeMaker parameter name.
Where is this coming from? I don't use PREREQ_PM anywhere? Not
critical, just curious.
> t/DOMParser.........Bareword "XML::Xerces::DOMParser" not allowed while "strict
>subs" in use at (eval 1) line 1.
> FAILED test 3
> Failed 1/5 tests, 80.00% okay
Seems odd, but I fixed this from: $DOM = new XML::Xerces::DOMParser to
$DOM = XML::Xerces::DOMParser->new(). Does that make 5.5 happier?
> t/SAX2Count.........Use of uninitialized value at t/SAX2Count.t line 52.
> Use of uninitialized value at t/SAX2Count.t line 53.
> Use of uninitialized value at t/SAX2Count.t line 54.
> Use of uninitialized value at t/SAX2Count.t line 55.
> Use of uninitialized value at t/SAX2Count.t line 56.
> Use of uninitialized value at t/SAX2Count.t line 57.
> Use of uninitialized value at t/SAX2Count.t line 58.
> Use of uninitialized value at t/SAX2Count.t line 59.
> FAILED tests 2, 5
> Failed 2/5 tests, 60.00% okay
Looks like SAX2Count.pl is not working. those uninitialized errors
mean that you didn't get a return value when the test was run. Could
you run it by hand and tell me what the output is?
Save this to a file:
<?xml version="1.0" encoding="utf-8"?>
<contributors>
<person Role="manager">
<name>Mike Pogue</name>
<email>[EMAIL PROTECTED]</email>
</person>
<person Role="developer">
<name>Tom Watson</name>
<email>[EMAIL PROTECTED]</email>
</person>
<person Role="tech writer">
<name>Susan Hardenbrook</name>
<email>[EMAIL PROTECTED]</email>
</person>
</contributors>
And run perl samples/SAX2Count.pl file
Thanks,
jas.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]