in reply to Building OpenSSL

What is the specific error message you're getting? I'd suggest typing it into google, and look at what other people did. It sounds, though, like you may have to install those libraries. Would have to see the error messages to tell you more ....

-- Burvil

Replies are listed 'Best First'.
Re^2: Building OpenSSL
by prabhuksmani (Initiate) on Mar 14, 2006 at 06:23 UTC
    hai bowei,

    thanks for ur reply. now i installed Crypt::Ssleay module, while running my sample script i get Ordinal 110 could not be located in the dynamic link library SSLEAY32.dll error msg. and 501 protocol scheme for 'https' is not supported.

    #!/usr/bin/perl use LWP 5.64; my $url = 'https://www.paypal.com/'; # Yes, HTTPS! my $browser = LWP::UserAgent->new; my $response = $browser->get($url); die "Error at $url\n ", $response->status_line, "\n Aborting" unless $response->is_success; print "Whee, it worked! I got that ", $response->content_type, " document!\n";
    thanks
    with regards
    Prabhu.S.M