On running the command install Crypt::SSLeay I found that the scripts
require a c compiler to be installed. gcc is currently installed so I
created a symbolic called cc which points to /usr/local/bin/gcc. 

However on going a build I am still getting the following error:

cc -c -I/usr/local/ssl/include  -xO3 -xdepend     -DVERSION=\"0.51\"
-DXS_VERSION=\"0.51\" -KPIC -I/usr/perl5/5.00503/sun4-solaris/CORE
SSLeay.c
cc: unrecognized option `-KPIC'
cc: language depend not recognized
cc: SSLeay.c: linker input file unused because linking not done
Running Mkbootstrap for Crypt::SSLeay ()
chmod 644 SSLeay.bs
LD_RUN_PATH="/usr/local/ssl/lib" cc -o
blib/arch/auto/Crypt/SSLeay/SSLeay.so -R/usr/local/ssl/lib -G SSLeay.o
-L/usr/local/ssl/lib -lssl -lcrypto
cc: SSLeay.o: No such file or directory
*** Error code 1
make: Fatal error: Command failed for target
`blib/arch/auto/Crypt/SSLeay/SSLeay.so'
  /usr/ccs/bin/make  -- NOT OK
Running make test
  Oops, make had returned bad status
Running make install
  Oops, make had returned bad status



-----Original Message-----
From: Wiggins d Anconia [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, January 12, 2005 1:26 PM
To: Dan Armstrong; beginners@perl.org
Subject: Re: Using LWP to Browse a Perl Page


> I've been reading this list every day for a week or so, and it's a 
> great resource.
> 
> I'm trying to use a GET or POST command to click on a link at this
address:
> 
> http://ibihost1.com/nycdoh/web/html/rii.pl
> 
> As you can see, the address points to a Perl script. When you click on

> a button on this page, you're taken to another page, but the address -

> rii.pl - stays the same. View source provides no help.
> 
> I'm wondering how I can use a Perl script to get past this page and 
> subsequent ones.
> 
> Thanks in advance for pointing me to any relevant resources.
> 
> Dan
> 

Did you view source for the frame or the original page?  The address not
changing is an indication that frames is at work. When you click on the
button it is loading two different pages in two different frames. The
map page is static, the other frame uses a bunch of client side script
to generate a URL to make the request. Check the source of the right
frame and see if that helps. 

Alternatively if you use a real browser like Firefox there are
extensions you can use to see all of the header information sent in the
HTTP request which would show you exactly how to emulate your
transaction.

HTH,

http://danconia.org


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>



--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to