mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Merge branch 'PHP-8.2' into PHP-8.3
* PHP-8.2: Fix GH-15565: --disable-ipv6 during compilation produces error EAI_SYSTEM not found
This commit is contained in:
commit
8da94cfc41
2 changed files with 4 additions and 0 deletions
2
NEWS
2
NEWS
|
@ -7,6 +7,8 @@ PHP NEWS
|
|||
(zeriyoshi)
|
||||
. Fixed bug GH-15515 (Configure error grep illegal option q). (Peter Kokot)
|
||||
. Fixed bug GH-15514 (Configure error: genif.sh: syntax error). (Peter Kokot)
|
||||
. Fixed bug GH-15565 (--disable-ipv6 during compilation produces error
|
||||
EAI_SYSTEM not found). (nielsdos)
|
||||
|
||||
- DOM:
|
||||
. Fixed bug GH-15551 (Segmentation fault (access null pointer) in
|
||||
|
|
|
@ -118,7 +118,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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue