ady has asked for the wisdom of the Perl Monks concerning the following question:
When i run a test program :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
i get the error.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);
After the install, the library C:\Perl\site\lib\auto\XML\LibXSLT contains only :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
but no autoload file ".../auto/XML/LibXSLT/New.al".packlist LibXSLT.bs LibXSLT.dll LibXSLT.exp LibXSLT.lib
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: XML::LibXSTL/Windows autoload problem
by jbrugger (Parson) on Oct 03, 2005 at 12:21 UTC | |
by ady (Deacon) on Oct 03, 2005 at 17:45 UTC | |
by PodMaster (Abbot) on Oct 04, 2005 at 08:07 UTC | |
by ady (Deacon) on Oct 04, 2005 at 18:44 UTC | |
by Anonymous Monk on Oct 25, 2009 at 07:44 UTC |