On Mon, Jan 29, 2018 at 05:04:16AM -0500, 中村彰 via RT wrote:
Show quoted text> Mon Jan 29 05:04:09 2018: Request 124259 was acted upon.
> Transaction: Ticket created by rysa-naka@blue.ocn.ne.jp
> Queue: Imager
> Subject: Could not install JPEG libraries and other critical libraries
> Broken in: (no value)
> Severity: (no value)
> Owner: Nobody
> Requestors: rysa-naka@blue.ocn.ne.jp
> Status: new
> Ticket <URL:
https://rt.cpan.org/Ticket/Display.html?id=124259 >
>
>
> Dear Sir,
>
> I am appreciating the CPAN module Imger so far on my old Mac OS X Yosemite.
> And even after upgrading the OS version to High Sierra, it works!
>
> Recently, I tried to install Imager by using CPAN, JPEG library and other libraries could not be installed.
>
> The attached file, report txt, is the outcome of "perl errep.perl” command.
>
> Please consult the file and inform me the method of resolution.
Hi,
Imager's installation won't install the libjpeg, libtiff, libgif etc
libraries needed by Imager's file modules, you need to install these
from source, or via a package manager.
For OS X, this is typically as simple as:
- download the file
- extract and build:
tar xzf libjpeg8b.tar.gz
cd libjpeg8b
./configure
make && sudo make install
for each library.
See
https://metacpan.org/pod/distribution/Imager/lib/Imager/Install.pod
for more information on where to find the library sources, and
possible issues with installing them.
An alternative is to use one of the package management systems for OS
X, and install their library packages. I don't use any of them, but:
https://www.quora.com/Should-I-use-Fink-MacPorts-Homebrew-or-something-else-for-MacOS-package-management-Which-are-most-popular-currently-Are-there-any-newer-players-worth-preferring-such-as-Rudix
provides a reasonable comparison of MacPorts and Homebrew.
Tony