How do you install from the source on OSX ?
I first install all my delegate libraries via MacPorts. Then rather than waiting for macports to create a version of IM, I install IM from source code available at
http://www.imagemagick.org/download/. I modify the normal install instructions for the ./configure command from
http://www.imagemagick.org/download/www ... .html#unix and customize it using certain options from
http://www.imagemagick.org/script/advan ... lation.phpso I do
./configure ....
make
sudo make install
My ./configure command is:
./configure
CPPFLAGS='-I/opt/local/include' LDFLAGS='-L/opt/local/lib' \
--enable-delegate-build --enable-shared --disable-static --disable-opencl \
--with-modules --with-quantum-depth=16 --with-gslib --without-wmf \
--disable-silent-rules --disable-dependency-tracking --disable-openmp \
--with-gs-font-dir=/opt/local/share/ghostscript/fonts/ --with-lqr
The first two options in blue are the ones that link IM installed at /user/local/bin to my delegates installed by MacPorts at /opt/local/bin