Can I change the option DMAGICKCORE_HDRI_ENABLE?

PerlMagick is an object-oriented Perl interface to ImageMagick. Use this forum to discuss, make suggestions about, or report bugs concerning PerlMagick.
Post Reply
lleche
Posts: 10
Joined: 2012-11-25T14:50:18-07:00
Authentication code: 6789

Can I change the option DMAGICKCORE_HDRI_ENABLE?

Post by lleche »

Hi,
seems that some changes were to Makefile.PL.
In version "ImageMagick 6.8.3-6" , I see the option DMAGICKCORE_HDRI_ENABLE=0.
Shall I set it to 1 if I want to build perlmagick with HDRI version enabled?

Not clear what it does, and could not find any info despite some effort (searching forum, google....).

Thanks for clarification.
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: Can I change the option DMAGICKCORE_HDRI_ENABLE?

Post by magick »

Add --with-perl to your configure script command line. It builds a compatible Makefile.PL for PerlMagick. For HDRI, add --enable-hdri to your configure script command line:
  • cd ImageMagick-6.8.3-6
    ./configure --enable-hdri --with-perl
    make
    make install
Post Reply