Page 1 of 1

How to install 6.8.9 devel packages?

Posted: 2014-12-08T12:53:37-07:00
by mehulkar
I'm on RHEL and have compiled 6.8.9 from the binary using:

Code: Select all

yum install -y libpng libpng-devel
curl -LO http://www.imagemagick.org/download/releases/ImageMagick-6.8.9-9.tar.gz
tar -xvzf ImageMagick.tar.gz
cd ImageMagick-6.8.9-9/
./configure --prefix=/usr/local
make install
Usually, I would also do

Code: Select all

yum install -y ImageMagick-devel
but this installs 6.5.4. How do I get these header files for 6.8.9?

(To be honest, this is probably a newb Unix/RPM/Yum question, rather than ImageMagick, but would appreciate some help)

Thank you!