On Sun Oct 21 04:54:45 2012, BULKDD wrote:
Show quoted text> Looking at the Devel::PPPort included with Perl 5.17, on a Win32 Perl, I
> see about 3000 calls to Perl_get_context inside PPPort.dll.
> Devel::PPPort needs to use PERL_NO_GET_CONTEXT to avoid all these
> redundant calls. PPPort.dll is the 9th largest XS DLL I see included
> with Perl on my system.
Sorry for the late reply. This isn't actually a real problem
as the XS part of D::PPP is only being used for testing. Yes,
it's being loaded if you load D::PPP, but you only do that to
generate ppport.h. So it's a non-issue, apart from the size
the DLL wastes on your disk. You can actually build D::PPP
with PERL_NO_GET_CONTEXT if you set PERL_NO_GET_CONTEXT=1 in
your environment. I'll consider making that the default if it
doesn't cause any trouble.
Marcus