How to define the value of configuration?

Questions and postings pertaining to the development of ImageMagick, feature enhancements, and ImageMagick internals. ImageMagick source code and algorithms are discussed here. Usage questions which are too arcane for the normal user list should also be posted here.
Post Reply
hengsopheak
Posts: 16
Joined: 2017-03-21T07:45:32-07:00
Authentication code: 1151

How to define the value of configuration?

Post by hengsopheak »

I've try to add some lib to configuration file be run below commend
./configure \
--enable-shared=yes \
--disable-static \
--without-perl \
--with-fftw=yes \
--with-flif=yes \
-with-fpx=yes \
--with-fontconfig=yes \
--with-freetype=yes \
--with-jbig=yes \
--with-jpeg=yes \
--with-openjp2=yes \
--with-pango=yes \
--with-png=yes \
--with-tiff=yes \
--with-webp=yes;

Then Result change the default value(Yes) to No
Option Value
------------------------------------------------------------------------------
Shared libraries --enable-shared=yes yes
Static libraries --enable-static=no no
Module support --with-modules=no no
GNU ld --with-gnu-ld=yes yes
Quantum depth --with-quantum-depth=16 16
High Dynamic Range Imagery
--enable-hdri=yes yes

Install documentation: yes

Delegate Library Configuration:
BZLIB --with-bzlib=yes no
Autotrace --with-autotrace=no no
DJVU --with-djvu=yes no
DPS --with-dps=yes no
FFTW --with-fftw=yes no
FLIF --with-flif=yes no
FlashPIX --with-fpx=yes no
FontConfig --with-fontconfig=yes no
FreeType --with-freetype=yes no
Ghostscript lib --with-gslib=no no
Graphviz --with-gvc=yes no
JBIG --with-jbig=yes no
JPEG v1 --with-jpeg=yes no
LCMS --with-lcms=yes no
LQR --with-lqr=yes no
LTDL --with-ltdl=yes no
LZMA --with-lzma=yes no
Magick++ --with-magick-plus-plus=yes yes
OpenEXR --with-openexr=yes no
OpenJP2 --with-openjp2=yes no
PANGO --with-pango=yes no
PERL --with-perl=no no
PNG --with-png=yes no
RAQM --with-raqm=yes no
RSVG --with-rsvg=no no
TIFF --with-tiff=yes no
WEBP --with-webp=yes no
WMF --with-wmf=yes no
X11 --with-x= no
XML --with-xml=yes no
ZLIB --with-zlib=yes no
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: How to define the value of configuration?

Post by snibgo »

What is your platform? And version of IM?

Specifying "--with-png=yes" etc means you are asking IM to link to the PNG library. But if you don't have the PNG library or IM can't find it, it won't be linked. The file "config.log" will say if this is the case.
snibgo's IM pages: im.snibgo.com
hengsopheak
Posts: 16
Joined: 2017-03-21T07:45:32-07:00
Authentication code: 1151

Re: How to define the value of configuration?

Post by hengsopheak »

So difficulty to install Imagemagick.
Post Reply