libfcgi

地址:

https://github.com/FastCGI-Archives/fcgi2

http://ftp.debian.org/debian/pool/main/libf/libfcgi/

https://fossies.org/dox/fcgi-2.4.0/index.html

编译:

1、x86
  打开VS的x86本机工具命令提示,
  release版本:nmake -f Makefile.nt
  debug版本:nmake -f Makefile.nt CFG="debug"

2、x64,默认没有x64编译选项
  将各个工程目录下的.mak文件中的链接选项/machine:**86替换为/machine:x64,
  然后同x86一样执行编译命令。

3、用VS打开Win32下的FastCGI.dsw,然后修改配置进行编译,
  如果这种方式,有一部分项目不能成功迁徙。

原文地址:https://www.cnblogs.com/kohlrabi/p/9209162.html