ID: 39224
Updated by: [EMAIL PROTECTED]
Reported By: joe at asial dot co dot jp
Status: Assigned
Bug Type: Unknown/Other Function
Operating System: ALL
PHP Version: 5.1.6
Assigned To: wez
New Comment:
It was disabled because Sascha didn't think the configure check was
good enough.
Previous Comments:
------------------------------------------------------------------------
[2006-10-21 21:34:42] [EMAIL PROTECTED]
It has been disabled by Wez intentionally (unfortunately I don't know
the exact reason why).
Assigned to him, maybe he can add some comments.
------------------------------------------------------------------------
[2006-10-21 21:20:02] joe at asial dot co dot jp
Description:
------------
I cannot compile with support for Unix98 pty.
Following is source code from ext/standard/proc_open.c line 64 to 68.
#if 0 && HAVE_PTSNAME && HAVE_GRANTPT && HAVE_UNLOCKPT &&
HAVE_SYS_IOCTL_H && HAVE_TERMIOS_H
# include <sys/ioctl.h>
# include <termios.h>
# define PHP_CAN_DO_PTS 1
#endif
I think that '#if 0 && HAVE_PTSNAME ...' is wrong, '#if HAVE_PTSNAME
...' is right.
Reproduce code:
---------------
$descriptorspec = array(
0 => array("pty"),
1 => array("pty"),
2 => array("pty")
);
$cwd = '/tmp';
$env = array('some_option' => 'aeiou');
$process = proc_open('php', $descriptorspec, $pipes, $cwd, $env);
Expected result:
----------------
No error.
Actual result:
--------------
PHP Warning: proc_open(): pty pseudo terminal not supported on this
system in xxxx.php on line xx
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=39224&edit=1