How do I get XML/SAX/ParserDetails.ini to be included in the PAR file in a
place where SAX.pm can find it?

SAX.pm opens it like so....

    # get directory from wherever XML::SAX is installed
    if (!$dir) {
        $dir = $INC{'XML/SAX.pm'};
        $dir = dirname($dir);
    }

    my $fh = gensym();
    if (!open($fh, File::Spec->catfile($dir, "SAX", PARSER_DETAILS))) {
        XML::SAX->do_warn("could not find " . PARSER_DETAILS . " in
$dir\n");
        return $class;
    }


--
Ian cass

Reply via email to