in reply to Re^2: IO::Socket::SSL - Install Issues
in thread IO::Socket::SSL - Install Issues

I now have a directory, named as the module is

Just 'cd' into that directory and run 'perl Makefile.PL', etc.

It doesn't matter where that directory is located.

Cheers,
Rob

Replies are listed 'Best First'.
Re^4: IO::Socket::SSL - Install Issues
by DanielSpaniel (Scribe) on Jun 18, 2012 at 00:17 UTC
    Thanks Rob.

    Okay, I ran Makefile.PL and got the following:

    Warning: prerequisite Socket 1.95 not found. We have 1.8701.
    Writing Makefile for IO::Socket::SSL

    Does it matter too much, or am I okay to continue?

    Thanks again!
      Warning: prerequisite Socket 1.95 not found. We have 1.8701

      It will matter when it comes to running the test suite ('make test'), so install Socket-1.95 (or a later version) before continuing.
      You could install Socket using the same procedure, or you could just 'cpan install...' it.

      Cheers,
      Rob
        Thanks again.

        Turns out there were four or five other modules I needed to do the same thing for, but - pleasingly - after downloading each of them and doing make/install's (I'm now wary of cpan) I have managed to get IO::Socket::SSL installed, without it reporting any errors.

        Unfortunately I don't have time to test it with my script right now, but I'll report back in the morning!

        Thanks again to all