looks like HTML::Strip needs a compiler... (usually implied by the .xs and .c and .h files from the module download link on cpan.)
I recently tried out MinGW, and its worked superbly for every module I've tried installing so far.
I wrote this thread on
Compiling modules for win32 ActivePerl based on that adventure.
If you want to go with MinGW, heres a checklist:
1. Get MinGW
ppm install MinGW
2. Download the module from CPAN, and extract it into a folder somewhere. (Winzip can extract ".tar.gz" files)
3. Check that
c:\perl\site\bin is in your windows environment PATH
4. Run
perl -V:make and
perl -V:cc, they should return
make='dmake' and
cc='gcc' respectively. (If they don't, then either MinGW didn't install properly, or Perl doesn't know about the MinGW installation.)
5. Then follow the standard mantra
perl Makefile.pl
dmake
dmake test
dmake install
If running through the above checklist doesn't go smoothly, then there may be other issues specifc to your Perl installation, Perl version, PC environment etc. So this may be a pretty steep learning curve... Anyhow, once you get
perl -V:cc returning
cc='gcc' be aware that you'll need to rerun
perl Makefile.pl as it creats a different file when
cc='gcc' rather than the default
cc='cl' for ActivePerl )
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.