Some good news: I got your module to install, and all the tests passed. The problem was with XML::SAX::ParserFactory. It must be listed in PREREQ_PM in addition to XML::SAX. You had XML::SAX 0.96, but you also need XML::SAX::ParserFactory 1.01.

Here's the modified Makefile:
use 5.005; use strict; use ExtUtils::MakeMaker; &WriteMakefile( NAME => 'PICA::Record', DISTNAME => 'PICA-Record', VERSION_FROM => 'lib/PICA/Record.pm', ABSTRACT_FROM => 'lib/PICA/Record.pm', PMLIBDIRS => [ qw( lib/ ) ], AUTHOR => 'Jakob Voss <jakob.voss@gbv.de>', PREREQ_PM => { 'LWP::Simple' => '1.0', 'URI::Escape' => '1.35', 'SOAP::Lite' => '0.71', 'Scalar::Util' => '1.14', 'Config::Simple' => '4.58', 'PerlIO' => '1.0', 'IO::File' => '1.11', 'IO::Scalar' => '1.126', 'Encode' => '2.33', 'XML::SAX' => '0.96', 'XML::SAX::ParserFactory' => '1.01', 'XML::Writer' => '0.605', 'DBI' => '1.0', 'DBD::SQLite' => '1.23', 'Unicode::Normalize' => '0.23', 'String::Escape' => '0', }, EXE_FILES => [ 'script/parsepica', 'script/picaimport', 'script/winibw2pica', ], dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, depend => { Makefile => '$(VERSION_FROM)' }, clean => { FILES => 'PICA-Record-*' }, );

In reply to Re: How to specify required XML::SAX features in Makefile.PL by Khen1950fx
in thread How to specify required XML::SAX features in Makefile.PL by voj

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.