PDA

View Full Version : libpng



vandal
11-17-2006, 09:24 AM
All the popular os's are releasing advisories against libpng. From the libpng website http://www.libpng.org/pub/png/libpng.html they say security can crash bugs up until 1.2.12.

So you should upgrade to 1.2.13.

cd /usr/local/directadmin/customapache

wget http://superb-west.dl.sourceforge.net/sourceforge/libpng/libpng-1.2.13-no-config.tar.gz

mv libpng-1.2.13-no-config.tar.gz libpng-1.2.13.tar.gz

nano -w build

find:

if [ -e /lib64 ]; then
PNG_VER=1.2.8
else
PNG_VER=1.2.10
fi


change to:

if [ -e /lib64 ]; then
PNG_VER=1.2.8
else
PNG_VER=1.2.13
fi

save the file then:

./build libpng

everything appears to be working for me.

jw00dy
11-17-2006, 11:17 AM
Thanks Vandal.

vandal
11-17-2006, 12:34 PM
my pleasure.

Seems the build script was using version .10 and I would like to know why it wasn't ever updated to at least .12.

Odd.

DirectAdmin Support
11-18-2006, 05:08 PM
Thanks for pointing that out, I've updated the script.

John

vandal
11-19-2006, 10:44 AM
Thanks John,

Justin

hehachris
11-19-2006, 04:32 PM
everything works fine here.