This reverts commit
14d674442ef86ad4e862228a1ff5ecd322ae7759.
I misread the discussion on the bug -- this is not the correct
fix. However the other proposed fix does not work either, so just
reverting for now.
- 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)
{
char buf[64];
- return !ttyname_r(0, buf, 64);
+ return ttyname_r(0, buf, 64) ? 1 : 0;
}
],[
AC_MSG_RESULT([yes])