Skip to content

Commit 53d6ed8

Browse files
authored
Autotools: Fix typo in FPM TCP_CONNECTION_INFO check (#15411)
Otherwise, the check even works with such typo, but this fixes the TCP_CONNECTION_INFO check on macOS machines for FPM.
1 parent 25afbdb commit 53d6ed8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sapi/fpm/config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ AC_DEFUN([PHP_FPM_LQ],
235235
AS_VAR_IF([php_cv_have_TCP_INFO], [yes],
236236
[AC_DEFINE([HAVE_LQ_TCP_INFO], [1], [Define to 1 if you have 'TCP_INFO'.])])
237237
238-
AC_CACHE_CHECK([for TCP_CONNECTION_INFO], [php_cv_have_TCP_CONNECTION_INFO]
238+
AC_CACHE_CHECK([for TCP_CONNECTION_INFO], [php_cv_have_TCP_CONNECTION_INFO],
239239
[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <netinet/tcp.h>], [
240240
struct tcp_connection_info ti;
241241
int x = TCP_CONNECTION_INFO;

0 commit comments

Comments
 (0)