WWW--Curl
WWW--Curl copied to clipboard
Please pull and upload to CPAN as devel release.
Hi. I rewrote build system almost entirely. The most important improvement is that constants are now inlined:
$ perl -MO=Deparse -e 'use WWW::Curl::Easy; print CURLE_CHUNK_FAILED'
use WWW::Curl::Easy;
print 88;
-e syntax OK
As you can see it is automatically replaced by compiler, doesn't call CURLE_CHUNK_FAILED() and all the magic.
There may be some regressions that's why I ask you to upload it as devel and findout what automatic tests return.