From 39d4a77d6a6d4bc7431699827c7b3098ce1f552a Mon Sep 17 00:00:00 2001 From: Love Hornquist Astrand Date: Sun, 11 Oct 2009 18:42:59 -0700 Subject: [PATCH] Disable this for AIX --- lib/roken/rkpty.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/roken/rkpty.c b/lib/roken/rkpty.c index 2776c1318..6043e2b81 100644 --- a/lib/roken/rkpty.c +++ b/lib/roken/rkpty.c @@ -93,6 +93,10 @@ caught_signal(int signo) static void open_pty(void) { +#ifdef _AIX + printf("implement open_pty\n"); + exit(77); +#endif #if defined(HAVE_OPENPTY) || defined(__linux) || defined(__osf__) /* XXX */ if(openpty(&master, &slave, line, 0, 0) == 0) return;