in reply to Re: RDF::Parser install problems--other option?
in thread RDF::Parser install problems--other option?

My mistake. RDF::Simple, which contains RDF::Simple::Parser is what I tried to install. It fails on make test.
  • Comment on Re^2: RDF::Parser install problems--other option?

Replies are listed 'Best First'.
Re^3: RDF::Parser install problems--other option?
by Khen1950fx (Canon) on Feb 10, 2010 at 01:07 UTC
    It shouldn't be failing on you. For me, all the tests passed. I did notice a prereq problem though. One of the prereqs is Regexp::Common. I didn't have it installed. There's also a recommends for XML::SAX::Expat. I didn't have that, and make didn't ask if I wanted to install it. I threw this script together to check for and install the dependencies and the recommend:
    #!/usr/bin/perl use strict; use warnings; use CPAN; my @prereqs = ( "Class::MakeMethods", "File::Slurp", "IO::CaptureOutput", "LWP::UserAgent", "Regexp::Common", "Test::File", "URI::Escape", "XML::SAX", "XML::SAX::Expat"); foreach my $prereq( @prereqs) { system("pmpath $prereq"); } CPAN::Shell->install(@prereqs);
      c:\>nmake test Microsoft (R) Program Maintenance Utility Version 1.50 Copyright (c) Microsoft Corp 1988-94. All rights reserved. C:\Perl\bin\perl.exe "-MExtUtils::Command::MM" "-e" "test_harness( +0, 'blib\lib', 'blib\arch')" t/*.t t/001_load........ok t/002_simple......Unable to provide required features # Looks like your test died before it could output anything. dubious Test returned status 255 (wstat 65280, 0xff00) DIED. FAILED tests 1-2 Failed 2/2 tests, 0.00% okay t/003_uri.........Unable to provide required features # Looks like your test died just after 1. dubious Test returned status 255 (wstat 65280, 0xff00) after all the subtests completed successfully t/004_uri_file....Unable to provide required features # Looks like your test died before it could output anything. dubious Test returned status 255 (wstat 65280, 0xff00) DIED. FAILED tests 1-2 Failed 2/2 tests, 0.00% okay Failed Test Stat Wstat Total Fail List of Failed ---------------------------------------------------------------------- +--------- t/002_simple.t 255 65280 2 4 1-2 t/003_uri.t 255 65280 1 0 ?? t/004_uri_file.t 255 65280 2 4 1-2 Failed 3/4 test scripts. 4/9 subtests failed. Files=4, Tests=9, 3 wallclock secs ( 0.00 cusr + 0.00 csys = 0.00 C +PU) Failed 3/4 test programs. 4/9 subtests failed. NMAKE : fatal error U1077: 'C:\WINDOWS\system32\cmd.exe' : return code + '0xff' Stop.
        "Unable to provide required features" means that XML::SAX isn't properly installed. See the README.