From: Steve Hay Date: Fri, 23 Oct 2015 07:31:47 +0000 (+0100) Subject: Fix the (serial) build with dmake on Windows X-Git-Tag: v5.23.5~119 X-Git-Url: https://perl5.git.perl.org/perl5.git/commitdiff_plain/3ab112c5e7ed95ea56e1641e87085e7fef72be80?hp=3ab112c5e7ed95ea56e1641e87085e7fef72be80 Fix the (serial) build with dmake on Windows The switch to building non-XS modules last in win32/makefile.mk (introduced by design as part of the changes to enable parallel building) causes the build of POSIX to break due to problems with the version module. This change is the simplest of several workarounds/fixes put forward in the following threads: http://www.nntp.perl.org/group/perl.perl5.porters/2015/10/msg231903.html http://www.nntp.perl.org/group/perl.perl5.porters/2015/10/msg232039.html It appears that the version module could benefit from some work to render this change unnecessary, but for now it's the least invasive way to restore the dmake build. Thanks to all for chasing this down. ---