Subject: | Makefile.PL fails on WinXP w/ AS 5.8.8 |
Makefile.PL failed on my WinXP install (activestate 5.8.8 Build 822)
with "No library found for /core/perl58.lib".
It appears the way in which Config is used isn't working in
gen_msvc(). By moving the "require Config" to the
package includes as "use Config;" and changing from
my $libpath = Config->{'archlibexp'};
to
my $libpath = $Config{'archlibexp'};
everything works OK.