・最初気づいたらapache起動時に下記エラー発生
# /etc/init.d/httpd start
httpd を起動中: Syntax error on line 6 of /etc/httpd/conf.d/php.conf:
Cannot load /etc/httpd/modules/libphp4.so into server: /lib/tls/libc.so.6: version `GLIBC_2.4' not found (required by /lib/libgcc_s.so.1)

・で、rpmコマンドでglibのバージョンを調べようとした
# rpm -qa | grep glib
rpm: /lib/tls/libc.so.6: version `GLIBC_2.4' not found (required by /lib/libgcc_s.so.1)

・glibのバージョン
# glib-config --version
1.2.10

・で、しょうがないからtar.gz持ってきてアップグレードしようとしたら下記エラー発生
# tar zxvf glibc-2.4.tar.gz
# cd glibc-2.4
# ./configure
configure: error: you must configure in a separate build directory

こんな感じでとまってるんですがどうしたらいいんでしょうか