I've been trying to use ZMQ::LibZMQ3 on Strawberry Perl.
There's a couple of small problems.
One is this, from Makefile.PL:
Can't do inplace edit without backup at Makefile.PL line 101.
This is because Windows Perl can't do in-place edit.
A work-around is to change $^I to have a backup. I used ~ like gvim does:
Line 100 of Makefile.PL:
local $^I = '~';
That lets the Makefile.PL work.
Would you like a patch with that and an unlink of that file?
I've been trying to use ZMQ::LibZMQ3 on Strawberry Perl.
There's a couple of small problems.
One is this, from Makefile.PL:
Can't do inplace edit without backup at Makefile.PL line 101.
This is because Windows Perl can't do in-place edit.
A work-around is to change $^I to have a backup. I used ~ like gvim does:
Line 100 of Makefile.PL:
local $^I = '~';
That lets the Makefile.PL work.
Would you like a patch with that and an unlink of that file?