diff options
Diffstat (limited to 'devel/gnome-vfs/files/patch-modules_pty-open.c')
-rw-r--r-- | devel/gnome-vfs/files/patch-modules_pty-open.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/devel/gnome-vfs/files/patch-modules_pty-open.c b/devel/gnome-vfs/files/patch-modules_pty-open.c deleted file mode 100644 index 2ee23b086..000000000 --- a/devel/gnome-vfs/files/patch-modules_pty-open.c +++ /dev/null @@ -1,13 +0,0 @@ ---- modules/pty-open.c.orig Sun Apr 4 12:58:08 2004 -+++ modules/pty-open.c Sun Apr 4 12:59:30 2004 -@@ -613,6 +613,10 @@ - if ((fd == -1) && (errno == ENOENT)) { - fd = open("/dev/ptc", O_RDWR | O_NOCTTY); /* AIX */ - } -+ -+ if ((fd == -1) && (errno == ENOENT)) { -+ fd = posix_openpt(O_RDWR); -+ } - #endif - /* Set it to blocking. */ - flags = fcntl(fd, F_GETFL); |