I cannot build IM from source with some delegates.
Because I'm on a managed host I have to set tmp path before:
Code: Select all
export TMPDIR=~/.tmp/
Code: Select all
$ wget http://www.imagemagick.org/download/ImageMagick.tar.gz
$ tar xvzf ImageMagick.tar.gz
$ cd ImageMagick-6.9.1-0/
$ ./configure --enable-shared --with-jpeg=yes --with-png=yes --with-tiff=yes --with-lcms2=yes
So the configuration finished and did not "find" liblcms... Full end output of configure:
https://gist.github.com/CodeBrauer/668adb7076697b29c617
On 'make' i got an error...
https://gist.github.com/CodeBrauer/87f25ad2439f73929eb8
Without "--enable-shared" or with "--with-lcms=yes" for configure did not change anything. Still same errors on make
So I checked I have liblcms installed:
Code: Select all
$ find / -name "liblcms*" 2>/dev/null | grep 'so'
/usr/lib/x86_64-linux-gnu/liblcms2.so.2
/usr/lib/x86_64-linux-gnu/liblcms.so.1
/usr/lib/x86_64-linux-gnu/liblcms2.so.2.0.2
/usr/lib/x86_64-linux-gnu/liblcms.so.1.0.19
I'm using Debian wheezy.
Regards,
Gabriel