Skip to content

Instantly share code, notes, and snippets.

@sorentwo
Forked from mtcmorris/lion-libpng
Created March 8, 2012 16:52
Show Gist options
  • Save sorentwo/2002035 to your computer and use it in GitHub Desktop.
Save sorentwo/2002035 to your computer and use it in GitHub Desktop.
Fix lion libpng
# Fixing Lion libpng issues
# Until this issue https://github.com/mxcl/homebrew/issues/4468 is resolved
# installing Lion screws up ImageMagick's png support. # The following steps
# are a hacky work around to get things going again. `identify: memory
# allocation failed` is the error # message you'll receive before applying the
# fix.
brew uninstall imagemagick
cd /usr/X11R6/lib
sudo mv libpng.dylib libpng.old.dylib
sudo ln -s libpng12.0.dylib libpng.dylib
brew install -f imagemagick --disable-openmp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment