http://www.perlmonks.org?node_id=1050367


in reply to Re^2: LibXSLT fails while running "make test"
in thread LibXSLT fails while running "make test"

That means I must install fresh libexslt and libz

Yes, and maybe libxslt and libxml (does XML::LibXML work?), and maybe more. And maybe compile them yourself, don't just install the packages. And make sure the same compiler is used that compiled perl.

  • Comment on Re^3: LibXSLT fails while running "make test"

Replies are listed 'Best First'.
Re^4: LibXSLT fails while running "make test"
by Anonymous Monk on Aug 21, 2013 at 15:31 UTC
    so far its looking like simple LD_LIBRARY_PATH problem, might be all that, but its probably not
      I forgot..that if you compile using one version of a library, but you try to run it with LD_LIBRARY_PATH set to find some other version of the library first, you can run into problems. LD_LIBRARY_PATH should be left unset whenever possible, and only set to the minimum path for the minimum amount of time needed to run things that won't run otherwise.

        Thank you so much for the reply :). The error was because as you said it was unable to fetch libraries of libxslt which was located in /usr/local/lib where as it was searching in /usr/lib. When the path is set the error is solved :) :)

        With Best Regards