SVN: toys/rsget.pl/RSGet/Curl.pm

sparky sparky at pld-linux.org
Wed Apr 27 18:54:28 CEST 2011


Author: sparky
Date: Wed Apr 27 18:54:27 2011
New Revision: 12234

Modified:
   toys/rsget.pl/RSGet/Curl.pm
Log:
- WWW::CurlOO renamed to Net::Curl


Modified: toys/rsget.pl/RSGet/Curl.pm
==============================================================================
--- toys/rsget.pl/RSGet/Curl.pm	(original)
+++ toys/rsget.pl/RSGet/Curl.pm	Wed Apr 27 18:54:27 2011
@@ -11,15 +11,15 @@
 use RSGet::Line;
 use RSGet::Hook;
 BEGIN {
-	eval { require WWW::CurlOO::Compat; };
+	eval { require Net::Curl::Compat; };
 	if ( $@ ) {
-		warn "\nERROR::Could not load WWW::CurlOO::Compat -- " .
+		warn "\nERROR::Could not load Net::Curl::Compat -- " .
 			"will use WWW::Curl instead\n";
-		warn "NOTE: future rsget.pl versions will require WWW::CurlOO to run,\n" .
+		warn "NOTE: future rsget.pl versions will require Net::Curl to run,\n" .
 			"so make sure it is available in your operating system before " .
 			"that happens.\n\n";
 	} else {
-		print "Using WWW::CurlOO, woohoo !\n";
+		print "Using Net::Curl, woohoo !\n";
 	}
 }
 use WWW::Curl::Easy 4.00;


More information about the pld-cvs-commit mailing list