1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Merge branch 'PHP-8.3'

* PHP-8.3:
  Fix GH-15565: --disable-ipv6 during compilation produces error EAI_SYSTEM not found
This commit is contained in:
Niels Dossche
2024-08-24 14:16:30 +02:00
2 changed files with 4 additions and 0 deletions

2
NEWS
View File

@@ -14,6 +14,8 @@ PHP NEWS
(ilutov)
. Fixed bug GH-15501 (Windows HAVE_<header>_H macros defined to 1 or
undefined). (Peter Kokot)
. Fixed bug GH-15565 (--disable-ipv6 during compilation produces error
EAI_SYSTEM not found). (nielsdos)
- Date:
. Fixed bug GH-13773 (DatePeriod not taking into account microseconds for end

View File

@@ -113,7 +113,9 @@ static const char *php_gai_strerror(int code)
{EAI_NONAME, "Name or service not known"},
{EAI_SERVICE, "Servname not supported for ai_socktype"},
{EAI_SOCKTYPE, "ai_socktype not supported"},
# ifdef EAI_SYSTEM
{EAI_SYSTEM, "System error"},
# endif
{0, NULL}
};
int i;