Imagick (Imagemagick) Defect in Debian Sqeeze (6)

匆匆过客 提交于 2019-12-04 09:38:24

One solution seems to be to downgrade imagemagick:

http://howto.at/2011/08/02/super-speed-up-virtuozzo-with-debian-6-and-imagemagick/

There's a debian bug (#638409) opened about this, seems to be caused by imagemagick's use of openmp:

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=638409

Since we have this problem ourselves, we will be trying both solutions shortly :)

As mentioned by cosimo above it is a known but. I found an elegant solution by recompiling the packages without the openmp-extension according to A.M. Popa (for Debian) and J. Jarolim (for Ubuntu). Assuming you had installed imagemagick before:

$ apt-get buil-dep imagemagick
$ apt-get source imagemagick
$ cd imagemagick-6.5.7.8/
$ sudo vi debian/rules

add ~ line 39 --disable-openmp:

--disable-openmp

Rebuild the package and reinstall:

$ dpkg-buildpackage -b
$ cd ..
$ dpkg -i libmagickcore3* libmagickwand3*

Also try GMagick, minimal modifications on source and cool new features.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!