From the other output you've described Imager's Makefile.PL is finding neither the jpeg libraries not the header files.
You need all of the following:
- a compiler
- the library - depending on which compiler you're using that will be libjpeg.a or libjpeg.lib
- the header files - jpeglib.h, jconfig.h, jmorecfg.h
If the libraries aren't in the default library search path, add a --libpath=c:\directory\ option.
If the headers aren't in the default include search path, add a --incpath=c:\directory\ option.
So you might have:
perl Makefile.PL --incpath=c:\somewhere\include --libpath=c:\somewhere\lib
The Makefile.PL output should include a line like:
jpeg: includes found - libraries found
If it doesn't, Imager didn't find one of either the includes or libraries.
If it does, try building Imager, if you're still having problems please include: which files you put where, the output of perl Makefile.PL, and the build output.
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.