Well, for posterity's sake, here's what I've found so far. I believe I have reached the end of this saga, but we'll see.

First after mirod pointed me to the perl-xml mailing list as the place of discussion for all things XML::LibXML, I found a post from the author that said this in response to the same exact problem I was having:

The stuff I wrote for checking that you can link to libraries doesn't seemt to work on Debian. Just comment out the check for -lxml2 and it'll work.

So I did that (though I do not know if this web host is running Debian). I ran make and discovered something was telling Makefile.PL to use 'pgcc' as my compiler. I've never heard of this compiler, nor, it appears, had my server. I dutiously added CC='gcc' to my command line, which now (for those keeping score) looked like:

perl Makefile.PL PREFIX=/big/dom/xclickautomation/bin/perl LIBS='-L/big/dom/xclickautomation/lib' INC='-I/big/dom/xclickautomation/include/libxml2' CC='gcc'

Rerunning make, I discovered that this did not override all instances of pgcc. I hand-edited Makefile to correct a line under the 'MakeMaker tools_other section'. Finally make ran as it should.

'make test' cropped up that some of the tests apparently wanted to use Devel::Peek. It would have been good to know this in the Prerequisites section of the Makefile.PL, but I suppose that tests aren't really part of the module itself. I probably would have skipped 'make test' except that this installation had already given me so much grief.


In reply to XML::LibXML installation woes cured by AidanLee
in thread XML::LibXML installation woes (or, whence that library file?) by AidanLee

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.