in reply to Eclipse and PERL

I second the recommendation to use PPM, but if you're determined to do things this way, you'll have to post the exact error message that Eclipse gives. Without that, all we can do is guess at what's wrong.

Replies are listed 'Best First'.
Re^2: Eclipse and Perl
by RaduH (Scribe) on Oct 23, 2007 at 16:33 UTC
    Eclipse has that nice way of marking the line with a compilation error with a red dot on the side. The error message is "Compilation failed in require A fatal error (trappable) Perl could not compile a file specified in a C<require> statement. Perl uses this generic message when none of the errors that it encountered were severe enough to halt compilation immediately." This is on the line where I include Expect (use Expect;) Given the dependencies I learned about from the replies here, it is possible that the Expect module is found but some dependencies are missing and therefore the error is inside the module where other modules (that are missing) are being included and Eclipse can only flag the "use Expect;" line for obvious reasons (if this is indeed the case).