5

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?

2 Answers2

7

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
phipsalabim
  • 2,680
4

This command worked for Ubuntu 14.04 (but I'm not sure about previous Ubuntu releases):

sudo apt-get install libfcgi-dev
Eliah Kagan
  • 119,640