
January 30th, 2005, 06:28 PM
|
|
Contributing User
|
|
Join Date: Jul 2003
Posts: 44
Time spent in forums: 10 h 40 m 45 sec
Reputation Power: 10
|
|
|
problem with Imagemagick, jpeg and png
Im using FreeBSD 4.9 and I installed jpeg and png libs:
tar -xvf jpegsrc.6vb.tar
cd jpeg-6b
./configure --enable-shared
make
make install
tar -xvf libpng-1.0.6.tar
cd libpng-1.0.6
cd scripts
cp makefile.std ../makefile
cd ..
make
make install
I been trying to get ImageMagick to see them and when I configure it, it wont detect jpeg and png lib
I use this config:
./configure --prefix=/usr/local/ --with-jpeg --with-png --enable-shared=yes --disable-static --without-perl
|