summaryrefslogtreecommitdiff
path: root/sapi/cgi/config.w32
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@php.net>2006-02-02 08:17:23 +0000
committerDmitry Stogov <dmitry@php.net>2006-02-02 08:17:23 +0000
commit7e7fcc3a078029b06a23e7cc70cde935575df889 (patch)
treea91c4a827dd0441217e6993538f49304f7fb973c /sapi/cgi/config.w32
parent9774b6d3e63526f61ba98d0f53b3dd2304473980 (diff)
downloadphp-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/config.w32')
-rw-r--r--sapi/cgi/config.w323
1 files changed, 1 insertions, 2 deletions
diff --git a/sapi/cgi/config.w32 b/sapi/cgi/config.w32
index 5ef51ccd29..e1599f28d3 100644
--- a/sapi/cgi/config.w32
+++ b/sapi/cgi/config.w32
@@ -16,8 +16,7 @@ AC_DEFINE("ENABLE_PATHINFO_CHECK", PHP_PATH_INFO_CHECK == "yes" ? 1 : 0, "Pathin
if (PHP_CGI == "yes") {
AC_DEFINE('PHP_FASTCGI', PHP_FASTCGI == "yes" ? 1 : 0);
if (PHP_FASTCGI == "yes") {
- SAPI('cgi', 'cgi_main.c getopt.c', 'php-cgi.exe', '/I sapi/cgi/libfcgi/include /D FCGI_STATIC');
- ADD_SOURCES('sapi/cgi/libfcgi', 'fcgi_stdio.c fcgiapp.c os_win32.c', 'cgi');
+ SAPI('cgi', 'cgi_main.c getopt.c fastcgi.c', 'php-cgi.exe', '/I sapi/cgi/libfcgi/include /D FCGI_STATIC');
ADD_FLAG('LIBS_CGI', 'ws2_32.lib kernel32.lib advapi32.lib');
} else {
SAPI('cgi', 'cgi_main.c getopt.c', 'php-cgi.exe');