mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
Merge branch 'PHP-5.6' into PHP-7.0
This commit is contained in:
commit
c4d35c3214
4
NEWS
4
NEWS
@ -87,10 +87,6 @@ PHP NEWS
|
|||||||
. Implemented FR #72633 (Postgres PDO lastInsertId() should work without
|
. Implemented FR #72633 (Postgres PDO lastInsertId() should work without
|
||||||
specifying a sequence). (Pablo Santiago Sánchez)
|
specifying a sequence). (Pablo Santiago Sánchez)
|
||||||
|
|
||||||
- Posix:
|
|
||||||
. Fixed bug #71219 (php's configure script incorrectly checks for ttyname_r
|
|
||||||
availability). (Nikita)
|
|
||||||
|
|
||||||
- Reflection:
|
- Reflection:
|
||||||
. Fixed bug #72222 (ReflectionClass::export doesn't handle array constants).
|
. Fixed bug #72222 (ReflectionClass::export doesn't handle array constants).
|
||||||
(Nikita Nefedov)
|
(Nikita Nefedov)
|
||||||
|
@ -21,7 +21,7 @@ int main(int argc, char *argv[])
|
|||||||
{
|
{
|
||||||
char buf[64];
|
char buf[64];
|
||||||
|
|
||||||
return !ttyname_r(0, buf, 64);
|
return ttyname_r(0, buf, 64) ? 1 : 0;
|
||||||
}
|
}
|
||||||
],[
|
],[
|
||||||
AC_MSG_RESULT([yes])
|
AC_MSG_RESULT([yes])
|
||||||
|
Loading…
Reference in New Issue
Block a user