Wednesday, May 1, 2024
 Popular · Latest · Hot · Upcoming
7
rated 0 times [  7] [ 0]  / answers: 1 / hits: 5613  / 3 Years ago, thu, may 6, 2021, 3:51:35

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?


More From » 12.10

 Answers
0

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

[#32371] Saturday, May 8, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
darpose

Total Points: 424
Total Questions: 99
Total Answers: 121

Location: Jersey
Member since Fri, Oct 1, 2021
3 Years ago
;