Subject: | LWP::UserAgent does not give a proper error with https:// URLs if Crypt::SSLeay is not installed |
When using LWP::UserAgent and LWP::Simple (and probably other modules), if a request for
a secured page (https protocol) is given when Crypt::SSLeay is not installed on the
machine, the error returned is that the page cannot be loaded, but no warnings are
given that it is unable to laod the page because the required Perl module is missing.
A workaround is in the module to use:
require Crypt::SSLeay;
use LWP::UserAgent;
but this shouldn't be necessary. At least a warning would be nice.