[PHP-users 30141] Re: PHP4.4.2のCentOSへのインストール
Tadashi Jokagi
ml @ elf.no-ip.org
2006年 8月 25日 (金) 12:08:26 JST
ぢょ〜@よくきたなです.
db3 はどういう手段でどこにどういうファイルをインストールしま
したか? まず CentOS 4.3 だと /usr/include/db.h は db4 のバージョ
ンが書かれているので,--enable-db3=/usr は 当然NG です.
configure を読んだ感じ
・--with-db4 との同時指定は不可
{ { echo "$as_me:$LINENO: error: You cannot combine --with-db3 with --with-db4" >&5
・下記のディレクトリを基準にもう少しディレクトリとファイル名を補
完してヘッダーファイルを探す(面倒なので configure コピペします
for i in $withval /usr/local/BerkeleyDB.3.3 /usr/local/BerkeleyDB.3.2 /usr/local/BerkeleyDB.3.1 /usr/local/BerkeleyDB.3.0 /usr/local /usr; do
if test -f "$i/db3/db.h"; then
THIS_PREFIX=$i
THIS_INCLUDE=$i/include/db3/db.h
break
elif test -f "$i/include/db3/db.h"; then
THIS_PREFIX=$i
THIS_INCLUDE=$i/include/db3/db.h
break
elif test -f "$i/include/db/db3.h"; then
THIS_PREFIX=$i
THIS_INCLUDE=$i/include/db/db3.h
break
elif test -f "$i/include/db3.h"; then
THIS_PREFIX=$i
THIS_INCLUDE=$i/include/db3.h
break
elif test -f "$i/include/db.h"; then
THIS_PREFIX=$i
THIS_INCLUDE=$i/include/db.h
break
fi
done
だそうです.この辺参考にやっていけば指定できるようになるんじゃない
かと思います.
--
----.----1----.----2----.----3----.----4----.----5----.----6----.----7
Tadashi Jokagi/Shibuya city mailto:elf @ elf.no-ip.org
YokukitanaII http://elf.no-ip.org/
Yokukita blog http://blog.poyo.jp/
Yokukita wiki http://wiki.poyo.jp/
PHP-users メーリングリストの案内