]> granicus.if.org Git - php/commitdiff
Revert "Fixed bug #71219"
authorNikita Popov <nikic@php.net>
Sat, 30 Jul 2016 16:34:34 +0000 (18:34 +0200)
committerNikita Popov <nikic@php.net>
Sat, 30 Jul 2016 16:34:34 +0000 (18:34 +0200)
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.

NEWS
ext/posix/config.m4

diff --git a/NEWS b/NEWS
index 33a317020f8a68ff2bad4e510ba1001c3df81901..bc4df65fb402bf97fb21834045554034b187d3b2 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -63,10 +63,6 @@ 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)
index eb0d1dbf1c08e8785efaec7546e40bb2cc0b9736..82b80ce972c9b92e470562e81c367ca3670d7e02 100644 (file)
@@ -21,7 +21,7 @@ int main(int argc, char *argv[])
 {
        char buf[64];
 
-       return !ttyname_r(0, buf, 64);
+       return ttyname_r(0, buf, 64) ? 1 : 0;
 }
   ],[
     AC_MSG_RESULT([yes])