我正在尝试在Debian上安装ImageMagick库。
下载解压软件包后,我运行./configure命令(在ImageMagick目录中,并且在根目录下),但由于某些错误(在config.log中)而失败:

conftest.c:14:28: error: ac_nonexistent.h: No such file or director
conftest.c:79: error: expected ';', ',' or ')' before 'text'
conftest.c: In function 'main':
conftest.c:133: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'newvar'
conftest.c:133: error: 'newvar' undeclared (first use in this function)
conftest.c:133: error: (Each undeclared identifier is reported only once
conftest.c:133: error: for each function it appears in.)

我做错了什么?
谢谢

UPD:版本6.7.8-8

最佳答案

除了自己下载和配置软件包,您可以尝试以下操作(在控制台中):

aptitude update &&  aptitude install imagemagick

自从我使用debian已经有一段时间了,但是我认为这应该可行。

关于linux - 在Debian上安装ImageMagick,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11881773/

10-09 22:26