I just got finished force installing Crypt::SSLeay to my OSX 10.3.2 box.
When I try to run a perl code that calls https, instead of my previous error message of:
501 Protocol scheme 'https' is not supported
I now <post SSLeay install> get:
dyld: perl Undefined symbols:
/Library/Perl/5.8.1/darwin-thread-multi-2level/auto/Crypt/SSLeay/ SSLeay.bundle undefined reference to _OpenSSL_add_all_algorithms expected to be defined in a dynamic image
Trace/BPT trap
I googled the error message, and didn't get anything.. It's a bad message when google doesn't even come back with a hit.. But I stumbled across your list serv, and was hoping a perl guru might be able to lend me some help..
I haven't had great luck with CPAN.. is there another way to install modules?
any ideas? thanks tim
my https code below.. straight copy pasted from elsewhere.. --- #!/usr/bin/perl -w use LWP::Simple; my $url = 'https://www.site.com/cgi-bin/ip.pl'; my $content = get $url; die "Couldn't get $url" unless defined $content; print $content;