summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS4
-rw-r--r--ext/posix/config.m42
2 files changed, 1 insertions, 5 deletions
diff --git a/NEWS b/NEWS
index 1a04a6c2b9..cdf37e9007 100644
--- a/NEWS
+++ b/NEWS
@@ -87,10 +87,6 @@ PHP NEWS
. Implemented FR #72633 (Postgres PDO lastInsertId() should work without
specifying a sequence). (Pablo Santiago Sánchez)
-- 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)
diff --git a/ext/posix/config.m4 b/ext/posix/config.m4
index 0c4c30561e..9dfa70d1db 100644
--- a/ext/posix/config.m4
+++ b/ext/posix/config.m4
@@ -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])