in reply to problems with djgpp

You can just download the package from the CPAN (I usually go through the search interface), extract it, and run 'perl Makefile.PL'.

You'll probably have to find nmake from Microsoft, if you're on a Windows platform, so you can run 'make ; make test ; make install', and any XS components will need to be compiled with the same compiler as Perl.

I think LWP is pure Perl, though I'm not sure on that.

Replies are listed 'Best First'.
Re: Re: problems with djgpp
by strfry() (Monk) on Jun 04, 2001 at 17:47 UTC
    well, i tried using the search interface; and it did actually work for a few modules, but it seems that djgpp's socket.h implementation just hates me (:
    perl's IO package, especially IO::Socket, just refuses to compile (because of some weird problem with the case of pathnames, it wants IO/Socket, and see's io/Socket, and under no circumstances will it let me rename the directory, due to silly vfat filesys oddities.)

    in any case, i've just resigned to use activeperl, and use freebsd whenever i want to do something cool. (:


    thanks anyways, guys!