diff options
author | Dmitry Stogov <dmitry@php.net> | 2006-02-02 08:17:23 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2006-02-02 08:17:23 +0000 |
commit | 7e7fcc3a078029b06a23e7cc70cde935575df889 (patch) | |
tree | a91c4a827dd0441217e6993538f49304f7fb973c /sapi/cgi/cgi_main.c | |
parent | 9774b6d3e63526f61ba98d0f53b3dd2304473980 (diff) | |
download | php-git-7e7fcc3a078029b06a23e7cc70cde935575df889.tar.gz |
Reimplement FastCGI interface
Due to licensing restrictions that actually don't allow anybody to use
the libfcgi code without prior approval from Open Market, which is
impossible to obtain - we decided to reimplement this interface from
scratch. The result is actually slightly faster, and more importantly,
clear of any copyright issues.
Diffstat (limited to 'sapi/cgi/cgi_main.c')
-rw-r--r-- | sapi/cgi/cgi_main.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sapi/cgi/cgi_main.c b/sapi/cgi/cgi_main.c index e30d4f59fd..ac60c08d46 100644 --- a/sapi/cgi/cgi_main.c +++ b/sapi/cgi/cgi_main.c @@ -79,9 +79,7 @@ #include "php_getopt.h" #if PHP_FASTCGI -#include "fcgi_config.h" -#include "fcgiapp.h" -/* don't want to include fcgios.h, causes conflicts */ +#include "fastcgi.h" #ifdef PHP_WIN32 extern int OS_SetImpersonate(void); #else |