Skip to content

Instantly share code, notes, and snippets.

@nathanscott
Forked from mtcmorris/lion-libpng
Created July 30, 2011 01:49
Show Gist options
  • Save nathanscott/1115100 to your computer and use it in GitHub Desktop.
Save nathanscott/1115100 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 imagemagick
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment