We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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?
The text was updated successfully, but these errors were encountered:
@laufeyjarson Yeah, a patch would be nice, especially as I wouldn't be able to test it myself
Sorry, something went wrong.
This does build for me under Strawberry Perl v5.26.1.1. I could try to add an AppVeyor configuration that tests this. I have done this through https://github.com/zmughal-p5CPAN/p5-Net-Async-ZMQ.
No branches or pull requests
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?
The text was updated successfully, but these errors were encountered: