lighttpdの1.4.20がリリースされました。
1.4.20 - Otherwise the terrorists win
不穏なタイトル通り、色々とセキュリティーホールも見つかってるみたいなのでうちで使ってるlighttpdもさっさとバージョンアップしました。ついでにpcreもバージョンアップ。
まずはpcreから。
・
pcre-7.8.tar.gz
% tar zxvf pcre-7.8.tar.gz
% cd pcre-7.8
% ./configure --prefix=/home/hoge/root
% make
% make install
あ、ちなみにうちのサイトはroot権限はないので自分のhome直下にインストールしてます。
次にlighttpd。
・
lighttpd-1.4.20.tar.gz
% tar zxvf lighttpd-1.4.20.tar.gz
% cd lighttpd-1.4.20
% ./configure --without-webdav-props --without-webdav-locks --without-ldap --without-bzip2 --without-gzip --without-gdbm --without-lua --without-memcache --disable-ipv6 --prefix=/home/hoge/root
% cp -p src/mod_extforward.c src/mod_extforward.c.org
% vi src/mod_extforward.c
% diff src/mod_extforward.c src/mod_extforward.c.org
9d8
< #include <sys/types.h>
% make
% make install
前にもタワゴトに
書いたけど、相変わらずmod_extforward.c周りでmakeがこけるので、ここは修正する必要がある。
なんだろ?他の人たちは全然問題ないのだろうか…。
そういやphpもバージョン上げなきゃ。。。php5.3.0が出たら考えるかなぁ。
作成日:2008/10/02 02:16:41