Re: Static portable build for OSX?

[email protected] Tue, 19 Feb 2008 09:08:01 -0800
Newsgroups gmane.comp.video.image-magick.devel
Message-ID <[email protected]>
> that still seem to be linked dynamically to the various delegates.

You need to build all the delegate library static as well.  We typically
put all the delegate libraries in the top level ImageMagick source folder
and rename them to their short form names (e.g. jpeg for JPEG, tiff for TIFF,
etc.).  Now go to each delegate library and build it statically with

  ./configure --disable-shared --enable-delegate-build

Have fun.