Many thanks for your monklike patience- I should have found and read the README file. The cpan command still doesn't find the library, but proceeding with fixing the Makefile and running perl Makefile.PL and make, I now come up with:

sav_if/s_comput.h:662:4: error: #error Unsupported GNU C/C++ target hardware platform

This looks to me like a sophos rather than a perl bug or inavailability, the code causing this error being:
/* * Hardware platform. */ # if defined(__i386__) # define __SOPHOS_I386__ # elif (defined(__hppa__) && defined(_PA_RISC1_1)) # define __SOPHOS_HP_PA__ # elif defined(__sparc__) # define __SOPHOS_SPARC__ # elif (defined(_POWER) || defined(__ppc__) || defined(__POWERPC__) || + defined(__PPC__)) # define __SOPHOS_POWERPC__ # elif (defined(TARGET_CPU_68K) || defined(__CFM68K__) || defined(m68k +) || defined(_M_M68K)) # define __SOPHOS_68000__ # elif defined(__alpha__) # define __SOPHOS_ALPHA__ # elif defined (__s390__) # define __SOPHOS_S390__ # elif defined(__VAX) # define __SOPHOS_VAX__ # else # error Unsupported GNU C/C++ target hardware platform # endif
I don't understand this well, but I'll see what I can find out. Thanks again.

Ann

In reply to Re^2: How to tell cpan where a missing library is? by cantelow
in thread How to tell cpan where a missing library is? by cantelow

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.