Dear Monks and friends of Monks, I am attempting to install perl on FreeBSD 4.9 and I have done the following things:

Unpacked the tarball:

gunzip -c stable.tar.gz | tar -xvf -

Ran the install process:

rm -f config.sh Policy.sh// exits 0
sh Configure -de // exits 0
make // exits 0
make test// error

Here is the error I recieved:

Failed 1 test script out of 797, 99.87% okay. ### Since not all tests were successful, you may want to run some of ### them individually and examine any diagnostic messages they produce +. ### See the INSTALL document's section on "make test". ### You have a good chance to get more information by running ### ./perl harness ### in the 't' directory since most (>=80%) of the tests succeeded. ### You may have to set your dynamic library search path, ### LD_LIBRARY_PATH, to point to the build directory: ### setenv LD_LIBRARY_PATH `pwd`; cd t; ./perl harness ### LD_LIBRARY_PATH=`pwd`; export LD_LIBRARY_PATH; cd t; ./perl harn +ess ### export LD_LIBRARY_PATH=`pwd`; cd t; ./perl harness ### for csh-style shells, like tcsh; or for traditional/modern ### Bourne-style shells, like bash, ksh, and zsh, respectively. u=6.99219 s=2.40625 cu=375.859 cs=46.8203 scripts=797 tests=78801 *** Error code 1


So I scrolled up and found the error in the giant list of completed tests:

lib/Net/t/hostname...................Use of uninitialized value in str +ing eq at ../lib/Net/t/hostname.t line 39. Use of uninitialized value in string eq at ../lib/Net/t/hostname.t lin +e 39. FAILED at test 1


I followed the instructions and went to the "t" directory and called:

./perl harness// error

Here is the error I recieved:

Failed Test Stat Wstat Total Fail Failed List of Failed ---------------------------------------------------------------------- +--------- ../lib/Net/t/hostname.t 2 1 50.00% 1 (1 subtest UNEXPECTEDLY SUCCEEDED), 52 tests and 468 subtests skipped +. Failed 1/853 test scripts, 99.88% okay. 1/78812 subtests failed, 100.0 +0% okay.


Please oh mighty knowers of the Camel, how can I fix this?


In reply to error when installing perl 5.8.3 on FreeBSD by Anonymous Monk

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.