From d408e343e5ce1236206ec21b788a9514e0620479 Mon Sep 17 00:00:00 2001
From: Tom Scogland <njustn@gmail.com>
Date: Thu, 26 Jun 2008 07:14:17 -0500
Subject: [PATCH] fix for not building on osx, header file included which does not exist, wrong define check, used 'HAVE_SVR4_PTYS' instead of 'SVR4' to check for existance in pty.c

---
 src/pty.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/pty.c b/src/pty.c
index f89d44c..8307ced 100644
--- a/src/pty.c
+++ b/src/pty.c
@@ -34,7 +34,7 @@
 #endif
 
 /* for solaris 2.1, Unixware (SVR4.2) and possibly others */
-#ifdef HAVE_SVR4_PTYS
+#ifdef SVR4
 # include <sys/stropts.h>
 #endif
 
-- 
1.5.5.3

