Eu tive um problema semelhante (no Ubuntu) e consegui trabalhar instalando autotrace
da origem e configurando ImageMagick
apenas com o sinal --with-autotrace
(sem LDFLAGS
e CFLAGS
)
# build and install autotrace from source
cd /tmp
wget https://sourceforge.net/projects/autotrace/files/AutoTrace/0.31.1/autotrace-0.31.1.tar.gz
tar xvzf autotrace-0.31.1.tar.gz
cd /tmp/autotrace-0.31.1
./configure
make
sudo make install
# build and install ImageMagick
cd /tmp
wget http://www.imagemagick.org/download/ImageMagick.tar.gz
tar xvzf ImageMagick.tar.gz
cd /tmp/ImageMagick-7.0.3-5
./configure --with-autotrace
make
sudo make install