mirror of
https://github.com/php/php-src.git
synced 2026-03-30 04:02:19 +02:00
Fixed bug #71219
This commit is contained in:
4
NEWS
4
NEWS
@@ -63,6 +63,10 @@ PHP NEWS
|
||||
- PDO_pgsql:
|
||||
. Fixed bug #70313 (PDO statement fails to throw exception). (Matteo)
|
||||
|
||||
- Posix:
|
||||
. Fixed bug #71219 (php's configure script incorrectly checks for ttyname_r
|
||||
availability). (Nikita)
|
||||
|
||||
- Reflection:
|
||||
. Fixed bug #72222 (ReflectionClass::export doesn't handle array constants).
|
||||
(Nikita Nefedov)
|
||||
|
||||
@@ -21,7 +21,7 @@ int main(int argc, char *argv[])
|
||||
{
|
||||
char buf[64];
|
||||
|
||||
return ttyname_r(0, buf, 64) ? 1 : 0;
|
||||
return !ttyname_r(0, buf, 64);
|
||||
}
|
||||
],[
|
||||
AC_MSG_RESULT([yes])
|
||||
|
||||
Reference in New Issue
Block a user