Fellow Monks

I've installed XML::LibXSLT on my WinXP:
ppm> search XML::LibXSLT Searching in Active Repositories 1. XML-LibXSLT [1.58] Interface to Gnome libxslt library ppm> install 1 Package 1: ==================== Install 'XML-LibXSLT' version 1.58 in ActivePerl 5.8.3.809. ==================== ...etc
When i run a test program :
use strict; use XML::LibXSLT; my $XML_FILENAME = 'C:\Documents and Settings\z6and\Desktop\PerlXML\sk +emaer\WX.xml'; my $XSL_FILENAME = 'C:\Documents and Settings\z6and\Desktop\PerlXML\sk +emaer\WX.xsl'; my $xslt = XML::LibXSLT->New; my $stylesheet = $xslt->parse_stylesheet_file($XSL_FILENAME); my $results = $stylesheet->transform_file($XML_FILENAME); print $stylesheet->output_string($results);
i get the error.
Can't locate auto/XML/LibXSLT/New.al in @INC (@INC contains: C:\Progra +m Files\ActiveState Perl Dev Kit 6.0\lib\ C:/Perl/lib C:/Perl/site/li +b .) at C:\Documents and Settings\z6and\Desktop\CSC\PERL\PerlXML\XMLp +arse.pl line 35
After the install, the library C:\Perl\site\lib\auto\XML\LibXSLT contains only :
.packlist LibXSLT.bs LibXSLT.dll LibXSLT.exp LibXSLT.lib
but no autoload file ".../auto/XML/LibXSLT/New.al"

Checking with ActiveState i see that the module state for XML-LibXML 1.58 for Windows is "FAIL", so i wonder if the ppm i installed (from UWinnipeg PPM Repository) is in error? What are your experiences with installing LibXML on Windows ?

Best regards
allan

In reply to XML::LibXSLT/Windows autoload problem by ady

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.