Ubuntu – how to install c++ fastcgi development library

12.10ccgipackage-management

I can't seem to find anything on this.

I know apt-get install, but I don't know the name of the package for the standard c++ fastcgi development library.

What is it?

Best Answer

you will have to install boost first

sudo apt-get install libboost-all-dev

I am not aware of a fastcgi c++ package in ubuntu so...

download the library from nongnu.org

wget http://download.savannah.nongnu.org/releases/fastcgipp/fastcgi++-2.1.tar.bz2

extract archive

tar -xvf fastcgi++-2.1.tar.bz2

build

cd fastcgi++-2.1
./configure
make
make check
sudo make install