There is a file called README.macosx. Did you READIT?

=head2 Installation Prefix The default installation location for this release uses the traditiona +l UNIX directory layout under /usr/local. This is the recommended locati +on for most users, and will leave the Apple-supplied Perl and its modules undisturbed. Using an installation prefix of '/usr' will result in a directory layo +ut that mirrors that of Apple's default Perl, with core modules stored in '/System/Library/Perl/${version}', CPAN modules stored in '/Library/Perl/${version}', and the addition of '/Network/Library/Perl/${version}' to @INC for modules that are stored on a file server and used by many Macs.

When you say not use any modules I assume you mean not use any NON CORE modules. The downside of 5.8.x is it is not binary compatible with 5.6 so you have to recompile all non core modules and reinstall them. Actually only those that have C source ie XS modules not Pure Perl. Thus if you achieved your goal of pointing to the old 5.6.x libraries you would be in for some nasty suprises (Pure Perl would be OK, compiled stuff could/should/would/might crash)

./Configure PREFIX=/usr

Given OS X is *nix and thus should support symlinks

ln -s /System/Library/Perl/5.8.2 /System/Library/Perl

This aliases /System/Library/Perl to the real dir /System/Lobrary/Perl/5.8.2. but you probably don't wnat to do that. You typically symlink the perl binary into /usr/bin/perl or /usr/bin/local/perl for ease of use. Some people will link to /usr/bin/Perl5.8 so you can get either the original with /usr/bin/perl or 5.8 with ....

cheers

tachyon


In reply to Re: Changing path values during Configure causes make problems during 5.8.2 install. by tachyon
in thread Changing path values during Configure causes make problems during 5.8.2 install. by jryan

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.