And just for the record, here is the code I wrote so far:

# The latest version of IO::Socket::IP is causing some problem on some machines
# using the most recent version of Socket. Installing Socket 2.006
solves the problem.
# See http://mail.perlide.org/pipermail/padre-dev/2013-March/003418.html
if (win32) {
    eval "use IO::Socket::IP";
    if ($@ or $IO::Socket::IP::VERSION lt 0.18) {    # not installed
yet with a version that we can live with
        print STDERR "Due to some incompability between the most
recent version of the Socket module and the IO::Socket::IP";
        print STDERR "we need to ask you to manually install an older
version of Socket.pm before continuing.";
        print STDERR "See:
http://padre.perlide.org/trac/wiki/Features/Perl5Debugger#Installation";;
    }

    exit 0;
}
_______________________________________________
Padre-dev mailing list
Padre-dev@perlide.org
http://mail.perlide.org/mailman/listinfo/padre-dev

Reply via email to