openbsd-ports/lang/expect/patches/patch-exp_win_c
sebastia 507103ec99 Update expect to 5.44.1.15
switch from tcl/tk 8.4 to 8.5
take maintainership

after fixing the WANTLIB finally OK, landry@, sthen@, jasper@
2010-09-24 14:16:50 +00:00

16 lines
674 B
Plaintext

$OpenBSD: patch-exp_win_c,v 1.1 2010/09/24 14:16:50 sebastia Exp $
Get rid of implicit declaration of function warning
--- exp_win.c.orig Thu Sep 9 18:41:48 2010
+++ exp_win.c Thu Sep 9 18:42:53 2010
@@ -39,7 +39,7 @@ conflicts with sys/ioctl.h
/* Sigh. On AIX 2.3, termios.h exists but does not define TIOCGWINSZ */
/* Instead, it has to come from ioctl.h. However, As I said above, this */
/* can't be cavalierly included on all machines, even when it exists. */
-#if defined(HAVE_TERMIOS) && !defined(HAVE_TIOCGWINSZ_IN_TERMIOS_H)
+#if (defined(HAVE_TERMIOS) && !defined(HAVE_TIOCGWINSZ_IN_TERMIOS_H)) || defined(__OpenBSD__)
# include <sys/ioctl.h>
#endif