in reply to using dmake instead of nmake on Windows

It uses  perl -V:make by default, but if you install MinGW it ought to try to run dmake

ppm install MinGW dmake cpan Net::POP3

To force the issue you'd run

perl Makefile.PL make=dmake

You can configure cpan/cpanp ... see PERL_MM_OPT, PERL_MB_OPT

Replies are listed 'Best First'.
Re^2: using dmake instead of nmake on Windows
by fourmajor (Initiate) on Oct 06, 2012 at 14:33 UTC
    perl Makefile.PL make=dmake
    followed by make install did the trick. Thanks!