Skip to content

Commit b0950ff

Browse files
committedSep 27, 2017
Merge branch 'PHP-7.1' into PHP-7.2
* PHP-7.1: Fix CGI m4 config message when CGI is disabled
2 parents 474ee70 + 1981c48 commit b0950ff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎sapi/cgi/config9.m4

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ if test "$PHP_CGI" != "no"; then
2727

2828
AC_MSG_CHECKING([whether cross-process locking is required by accept()])
2929
case "`uname -sr`" in
30-
IRIX\ 5.* | SunOS\ 5.* | UNIX_System_V\ 4.0)
30+
IRIX\ 5.* | SunOS\ 5.* | UNIX_System_V\ 4.0)
3131
AC_MSG_RESULT([yes])
32-
AC_DEFINE([USE_LOCKING], [1],
32+
AC_DEFINE([USE_LOCKING], [1],
3333
[Define if cross-process locking is required by accept()])
3434
;;
3535
*)
@@ -74,5 +74,5 @@ if test "$PHP_CGI" != "no"; then
7474

7575
PHP_OUTPUT(sapi/cgi/php-cgi.1)
7676
else
77-
AC_MSG_RESULT(yes)
77+
AC_MSG_RESULT(no)
7878
fi

0 commit comments

Comments
 (0)
Please sign in to comment.