RSS | Module Info | Add a review of WWW-Curl
WWW-Curl
(4.15)
The documentation is awful, tests are shallow, no usage examples are provided. No way, I'm sticking with Net::Curl.
Stanislaw Pusep - 2012-11-06T06:21:18 (permalink)
1 out of 1 found this review helpful.
Was this review helpful to you?
Yes
No
WWW-Curl
(4.15)
Compiling and installing version 4.15 on Windows needs further tweak in Makefile.PL, The following line reports a error on Windows if I use Microsoft Visual Studio as compiler ("|" is Unix flavor, Not MS)
open(H_IN, "-|", "cpp", $curl_h) and $has_cpp++;
Just replace it with next line.
open(H_IN, "<", $curl_h);
That does the trick.
Once it is installed with ActiveState perl 5.12.2 on Windows. All 3 modules WWW::Curl::Multi, WWW::Curl::Share, WWW::Curl::Easy work good.
-Jack
Jack Zhang - 2011-01-28T13:35:12 (permalink)
0 out of 1 found this review helpful.
Was this review helpful to you?
Yes
No

