That gdb output doesn't make too much sense to me, but I'd be looking at the
libraries that apache is linked against as well as the actual binary.
You don't need to reinstall them all, btw. Just compare their sizes and
dates against their values in MANIFEST.bz2 (on your CDs).
Maybe something like this
Code:
ldd `which httpd`|awk '{print $1}' > files
bzcat /cdrom/slackware/MANIFEST.bz2 | egrep -f files
and compare the output to your system.
Cheers,
Tink