ImageMagick and OS X Lion trouble

前端 未结 13 1160
时光取名叫无心
时光取名叫无心 2020-12-04 06:55

[edit] I was troubleshooting problems with my development environment when I noticed one of my problems was the dependency on ImageMagick, since it\'s a vit

13条回答
  •  一向
    一向 (楼主)
    2020-12-04 07:52

    I also upgraded to Lion and lost ImageMagick, although i'm getting different errors.

    i found a Lion distribution on imagemagick.org. not a big fan of the DYLD_LIBRARY_PATH environment variable but it works.

    ok scratch that. i just downloaded the ImageMagick source and re-compiled:

    cd /tmp
    curl -OL ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick.tar.gz
    tar -xzf ImageMagick.tar.gz
    cd ImageMagick-6.7.2-7/
    ./configure --prefix=/usr/local --disable-static --with-modules --without-perl --without-magick-plus-plus --with-quantum-depth=8 --disable-openmp --with-gs-font-dir=/usr/local/share/ghostscript/fonts
    make
    sudo make install
    

提交回复
热议问题