Skip to content

Commit

Permalink
Changes for php 5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dreamcat4 authored and dreamcat four committed Oct 18, 2009
1 parent 5797b0c commit 730f428
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 169 deletions.
2 changes: 1 addition & 1 deletion ac/fpm_build.m4
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ AC_DEFUN([AC_FPM_BUILD_SAPI],
mkdir -p sapi/fpm/cgi
PHP_FPM_SAPI_FILES=`cd $abs_srcdir/sapi/fpm && find cgi/ \( -name *.c \) -exec printf "{} " \;`
# PHP_FPM_SAPI_FILES="cgi/cgi_main.c cgi/fastcgi.c cgi/getopt.c"
# PHP_FPM_SAPI_FILES="cgi/cgi_main.c cgi/fastcgi.c"
mkdir -p sapi/fpm/fpm
PHP_FPM_CORE_FILES=`cd $abs_srcdir/sapi/fpm && find fpm/ \( -name *.c -not -name fpm_trace*.c \) -exec printf "{} " \;`
Expand Down
3 changes: 1 addition & 2 deletions cgi/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,5 @@ libsapi_la_CFLAGS = -DFPM_AUTOCONFIG_H

libsapi_la_SOURCES = \
cgi_main.c \
fastcgi.c \
getopt.c
fastcgi.c

4 changes: 2 additions & 2 deletions cgi/cgi_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1357,8 +1357,8 @@ int main(int argc, char *argv[])
break;

case 'e': /* enable extended info output */
CG(extended_info) = 1; /* 5_2 */
/* CG(compiler_options) |= ZEND_COMPILE_EXTENDED_INFO; */ /* 5_3 */
/* CG(extended_info) = 1; */ /* 5_2 */
CG(compiler_options) |= ZEND_COMPILE_EXTENDED_INFO; /* 5_3 */
break;

case 'm': /* list compiled in modules */
Expand Down
164 changes: 0 additions & 164 deletions cgi/getopt.c

This file was deleted.

0 comments on commit 730f428

Please sign in to comment.