Ditto! I'm using the Open Perl IDE abandonware from sourceforge, and I assume from your mention of the perl5db.pl file, you've got the same. I got mine working (see qualifications below) by editing the use statements in the file:
use strict;
no strict "refs";
use Win32; # add this
use Cwd;
use File::Spec;
use IO::Socket::INET;
use feature ':5.10'; # add this
use Switch; # add this if you want to use given/when
However, the IDE has some 'issues'. You can set a breakpoint only on a statement in the edit window; there is no way to set conditional breakpoints. And for reasons that are beyond me, when you are working with a GUI done in Tkx, you can no longer look at the contents of variables in the variables window - they all say <internal item>.
I cannot make Perl Express work at all, I just keep getting a warning dialog letting me know that the debugger is running.
I am more or less happy with Open Perl IDE within its limitations, but like you I'd love to find a good, working free IDE - I work for a nonprofit and there is zero chance that they will buy software.
Hope my two cents' worth helps.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.