in reply to Re: XML::Parser: error in processing external entity reference at line ...
in thread XML::Parser: error in processing external entity reference at line ...

This could be the one possibility that the "perl library" is not getting linked. even after setting the: export LD_LIBRARY_PATH=../path/to/libperl.so it didn't help. How to verify if the linker is taking care of linking the perl library ?
  • Comment on Re^2: XML::Parser: error in processing external entity reference at line ...

Replies are listed 'Best First'.
Re^3: XML::Parser: error in processing external entity reference at line ...
by jethro (Monsignor) on Jun 08, 2009 at 12:23 UTC

    First of all you might edit your first post and put your error message between c- or code-tags, otherwise that part of your question is hardly readable

    To solve your problem you might call 'make -n' which would print all the commands make would execute (at least with most makes, hopefully yours too. Otherwise read the man page). Find the line where libcres.a is built

    One reason for the errors could be that expat doesn't know about your platform (HP-UX on Intanium) and has the wrong switches in the Makefile. So compare that line with what your compiler can understand. Try to execute the line on the shell and see if you can bring it to work, maybe by providing more switches

    Also check the documentation of expat. Is there any mention of HP-UX?