Skip Menu |

This queue is for tickets about the PerlMagick CPAN distribution.

Report information
The Basics
Id: 91785
Status: open
Priority: 0/
Queue: PerlMagick

People
Owner: Nobody in particular
Requestors: slyg [...] liza2005.ru
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Failed to install PerlMagic 6.87 under Strawberry perl v5.18.1
Date: Thu, 2 Jan 2014 02:29:58 +0400
To: bug-PerlMagick [...] rt.cpan.org
From: Sly G <slyg [...] liza2005.ru>
Hello. Failed to install PerlMagic 6.87 under Strawberry perl v5.18.1 After "cpan -i Image::Magick" I'm getting an error: Warning (mostly harmless): No library found for -lMagickCore-6.Q16 I've read readme.txt section about Strawberry and have met all prerequisites 1)...5), but still I cannot install it. Tried with ImageMagick 6.88 installed from binaries with dynamic dlls. -- Sly mailto:slyg@liza2005.ru
Try this patch:

diff -ru PerlMagick-6.89/Makefile.PL PerlMagick-6.89_patched/Makefile.PL
--- PerlMagick-6.89/Makefile.PL    2014-08-15 14:56:32.000000000 +0200
+++ PerlMagick-6.89_patched/Makefile.PL    2014-09-21 19:44:50.812742800 +0200
@@ -174,7 +174,7 @@
   # Setup for strawberry perl.
   #
   $INC_magick       = "$Ipaths";
-  $LIBS_magick      = "-lMagickCore-6.Q16";
+  $LIBS_magick      = "-lMagickCore"; # use here just plain 'MagickCore' no version info
   $CCFLAGS_magick   = "$Config{'ccflags'}";
   $LDFLAGS_magick   = "$Config{'ldflags'} $Lpaths ";
   $LDDLFLAGS_magick = "$Config{'lddlflags'} $Lpaths ";