install error involving libiconv.la

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
djstrouse
Posts: 1
Joined: 2014-01-21T15:38:26-07:00
Authentication code: 6789

install error involving libiconv.la

Post by djstrouse »

I'm trying to install ImageMagick (on a machine running OSX 10.9.1) since it is a dependency for a JekyllGalleryTag I want to use. However, I get the following error when I type make (following the instructions here: http://www.imagemagick.org/script/insta ... e.php#unix):

-------------------------
CCLD magick/libMagickCore-6.Q16.la
libtool: link: warning: library `/Library/Frameworks/EPD64.framework/Versions/7.3/lib/libxml2.la' was moved.
grep: /usr/lib/libiconv.la: No such file or directory
sed: /usr/lib/libiconv.la: No such file or directory
libtool: link: `/usr/lib/libiconv.la' is not a valid libtool archive
make[2]: *** [magick/libMagickCore-6.Q16.la] Error 1
make[1]: *** [all-recursive] Error 1
make: *** [all] Error 2
-------------------------

The following warning also pops up half way through the text following the make command:

-------------------------
coders/pdf.c:1106:37: warning: illegal character encoding in string literal
[-Winvalid-source-encoding]
(void) WriteBlobString(image,"%%<E2><E3><CF><D3>\n");
^~~~~~~~~~~~~~~~
1 warning generated.
-------------------------

Here are the options used to compile and link:

-------------------------
PREFIX = /usr/local
EXEC-PREFIX = /usr/local
VERSION = 6.8.8
CC = gcc
CFLAGS = -g -O2 -Wall -fexceptions -D_FORTIFY_SOURCE=0 -D_THREAD_SAFE -pthread -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16
CPPFLAGS = -I/usr/local/include/ImageMagick-6
PCFLAGS = -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16
DEFS = -DHAVE_CONFIG_H
LDFLAGS = -L/usr/local/lib -R/usr/local/lib -L/usr/X11/lib -L/Library/Frameworks/EPD64.framework/Versions/7.3/lib
MAGICK_LDFLAGS = -L/usr/local/lib -L/usr/local/lib -R/usr/local/lib -L/usr/X11/lib -L/Library/Frameworks/EPD64.framework/Versions/7.3/lib
LIBS = -lpng15 -lXext -lXt -lSM -lICE -lX11 -lbz2 -lxml2 -lz -lm
CXX = g++
CXXFLAGS = -g -O2 -D_THREAD_SAFE -pthread
FEATURES = DPC
DELEGATES = bzlib mpeg png ps x xml zlib
-------------------------

Any suggestions/help would be much appreciated.
Post Reply