LoginSignup
3
5

More than 5 years have passed since last update.

FastCGI Libraryのインストール

Posted at

はじめに

FastCGI Libraryを手動でインストールしようとしたら、本家サイト( http://www.fastcgi.com )が停止していた(2017年8月確認)。
gitにアーカイブが用意されていたので、そちらを利用したインストール手順を備忘録として掲載しておく。

インストール手順

install.sh
#アーカイブからダウンロード&解凍
curl -O -k -L https://github.com/FastCGI-Archives/FastCGI.com/raw/master/original_snapshot/fcgi-2.4.1-SNAP-0910052249.tar.gz
tar xf fcgi-2.4.1-SNAP-0910052249.tar.gz
#
#インストール
cd fcgi-2.4.1-SNAP-0910052249
./configure --prefix=/usr/local
#
#fcgio.cppのインクルードがないとmakeに失敗するため追加
mv libfcgi/fcgio.cpp /tmp/original
echo "#include <stdio.h>" > libfcgi/fcgio.cpp
cat /tmp/original >> libfcgi/fcgio.cpp
rm /tmp/original
#
make
sudo make install
3
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
5