$ tar xvfz ImageMagick.tar.gz
$ cd ImageMagick-6.6.3-1
$ ./configure
$ make
$ sudo make install
When I try to run an IM command, I get this error:
Code: Select all
convert: error while loading shared libraries: libMagickCore.so.4: cannot open shared object file: No such file or directory
Code: Select all
configure:4880: checking dependency style of gcc
configure:4990: result: gcc3
configure:5011: checking how to run the C preprocessor
configure:5042: gcc -E conftest.c
configure:5042: $? = 0
configure:5056: gcc -E conftest.c
conftest.c:9:28: error: ac_nonexistent.h: No such file or directory
configure:5056: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "ImageMagick"
| #define PACKAGE_TARNAME "ImageMagick"
| #define PACKAGE_VERSION "6.6.3"
| #define PACKAGE_STRING "ImageMagick 6.6.3"
| #define PACKAGE_BUGREPORT "http://www.imagemagick.org"
| #define PACKAGE_URL ""
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:5081: result: gcc -E
configure:5101: gcc -E conftest.c
configure:5101: $? = 0
configure:5115: gcc -E conftest.c
conftest.c:9:28: error: ac_nonexistent.h: No such file or directory
configure:5115: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "ImageMagick"
| #define PACKAGE_TARNAME "ImageMagick"
| #define PACKAGE_VERSION "6.6.3"
| #define PACKAGE_STRING "ImageMagick 6.6.3"
| #define PACKAGE_BUGREPORT "http://www.imagemagick.org"
| #define PACKAGE_URL ""
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
Code: Select all
configure:5391: checking for unistd.h
configure:5391: gcc -c -g -O2 conftest.c >&5
configure:5391: $? = 0
configure:5391: result: yes
configure:5404: checking minix/config.h usability
configure:5404: gcc -c -g -O2 conftest.c >&5
conftest.c:52:26: error: minix/config.h: No such file or directory
configure:5404: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "ImageMagick"
| #define PACKAGE_TARNAME "ImageMagick"
| #define PACKAGE_VERSION "6.6.3"
| #define PACKAGE_STRING "ImageMagick 6.6.3"
| #define PACKAGE_BUGREPORT "http://www.imagemagick.org"
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h. */
Any ideas for a fix?