lighttpd 1.5.0のインストール
koba206の開発WIKI » » lighttpd 1.5.0のインストール
lighttpd 1.5.0をインストールしようと./configureしたら下記のエラーが出るchecking for GTHREAD... ./configure: line 25951: no: command not found
./configure: line 25959: no: command not found
configure: error: Package requirements (gthread-2.0 >= 2.4.0) were not met:
このエラーはglib-develとpkgconfigをインストールしたら出なくなった
まずは
/usr/local/src/lighttpd-1.5.0# wget http://pkgconfig.freedesktop.org/releases/pkg-config-0.21.tar.gz
/usr/local/src/lighttpd-1.5.0/pkg-config-0.21# ./configure
/usr/local/src/lighttpd-1.5.0/pkg-config-0.21# make
/usr/local/src/lighttpd-1.5.0/pkg-config-0.21# make install
/usr/local/src/lighttpd-1.5.0/pkg-config-0.21# cp /usr/local/bin/pkg-config /usr/bin/pkg-config
/usr/local/src# wget ftp://ftp.gnu.org/gnu/gettext/gettext-0.16.1.tar.gz
/usr/local/src# tar xzf gettext-0.16.1.tar.gz
/usr/local/src# cd gettext-0.16.1
/usr/local/src/gettext-0.16.1# ./configure
/usr/local/src/gettext-0.16.1# make
/usr/local/src/gettext-0.16.1# make install
/usr/local/src/lighttpd-1.5.0/glib-2.9.6# ./configure
/usr/local/src/lighttpd-1.5.0/glib-2.9.6# make
下記エラーが出る
gconvert.c:47:2: error: #error GNU libiconv not in use but included iconv.h is from libiconv
make[4]: *** [gconvert.lo] Error 1
make[4]: Leaving directory `/usr/local/src/glib-2.9.6/glib'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/usr/local/src/glib-2.9.6/glib'
make[2]: *** [all] Error 2
make[2]: Leaving directory `/usr/local/src/glib-2.9.6/glib'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/usr/local/src/glib-2.9.6'
エラーが出てどうしてもインストールできないので、
一回ここで保留にします。