in reply to libxslt not found
Even if you get some warnings when running that Makefile.PL, follow it up by running 'make' and see what happens. If it doesn't work you can always start over again by first running 'make clean'.use ExtUtils::MakeMaker; WriteMakefile( 'NAME' => 'XML::LibXSLT', 'VERSION_FROM' => 'LibXSLT.pm', # finds $VERSION 'AUTHOR' => 'Matt Sergeant', 'ABSTRACT' => 'Interface to Gnome libxslt library', 'PREREQ_PM' => { 'XML::LibXML' => "1.58", }, 'LIBS' => ['-lxslt -lxml2 -lz -lm'], 'OBJECT' => '$(O_FILES)', );
|
|---|