Nice ... and we now have (in lib/ExtUtils/Liblist/Kid.pm):
if ($GC and exists $ENV{LIBRARY_PATH} and $ENV LIBRARY_PATH}) { push @libpath, split /;/, $ENV{LIBRARY_PATH}; }
This means that (with MinGW), if I have my 3rd party headers & libraries in places like C:\_32\msys\1.0\local\include and C:\_32\msys\1.0\local\lib I can set my CPATH environment variable to C:\_32\msys\1.0\local\include and my LIBRARY_PATH environment variable to C:\_32\msys\1.0\local\lib, and I can build modules that need to find those 3rd party libraries using CPAN.
Without that crucial piece of code the libraries would not be found and I would either have to modify the Makefile.PL or manually run (eg) perl Makefile.PL LIBS="-LC:/_32/msys/1.0/local/lib -lmpc -lmpfr -lgmp"

And they did it all for me !! (Well ... probably not *just* for me ... but, afaik, I'm the only person who wants to take advantage of this.) Thanks jand. I'm rapt.

Schwern declined my request to include the same piece of code into the official EU::MM release. Hopefully, this change *will* eventually be built into the official EU::MM, whereupon the same convenience would automatically become available to those who use Strawberry Perl, and to those who build their own MinGW perl from source.

Cheers,
Rob

In reply to Re: Perl 5.10.1 builds now available from ActivePerl by syphilis
in thread Perl 5.10.1 builds now available from ActivePerl by ikegami

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.