My notes on building the ImageMagick tools from source on Mac OS X 10.4 / Intel
Sponsored Links:
ImageMagick on OS X / Intel
Get libjpg
tar zxvf jpegsrc.v6b.tar.gz cd jpeg-6b cp /usr/share/libtool/config.sub . cp /usr/share/libtool/config.guess . ./configure --enable-shared --enable-static make sudo make install sudo ranlib /usr/local/lib/libjpeg.a
get libpng
./configure make sudo make install sudo ranlib /usr/local/lib/libpng.a
get libtiff - ver 3.8 doesn’t link, use 3.7.4
./configure --with-apple-opengl-framework make sudo make install sudo ranlib /usr/local/lib/libtiff.a
then ImageMagick — If you did this previously, make clean otherwise it won’t notice the above new libraries
./configure make sudo make install