> Hi all,
>
> I want to install IO::Tty for Expect in solaris 5.8.But it needs
> compilation and requires gcc compiler.
> Here iam looking for a perl with inbuilt gcc compiler .
> i dont want to go for seperate gcc installation as my user space is very
> less for gcc installation.so is there any other way which can make this
> installation successful.
> Please let me know.
>
> Thanks in Advance.
>
> Regards,
> :)
>
If you have access to a similar box with development tools on you can
always relocate the module with something like this:
perl -MFile::Find -e '
find(sub{ print $File::Find::name ."\n" if /Tty/}, @INC);' | \
tar cvf Tty.tar -T -
Then extract the tar file Tty.tar on another box. I think thats all you
need, but someone can probably chime in if its missing something.
If you truly do not have any access to build this, you can use the
pre-built ones I have from my project page:
http://sourceforge.net/project/showfiles.php?group_id=118999
Get the Rover Binary Expect package, and in it I have pre-built IO::Tty
v1.07. You can strip out the IO::Pty and Expect that is included because
they are really old. I have two sun platforms in this package:
i86pc-solaris-64int and sun4-solaris-64int.
Hope that helps.
Bryan Bueter
http://sourceforge.net/projects/rover
|