openbsd-ports/x11/gnustep/terminal/patches/patch-TerminalView_m
sebastia 6df7e60919 bump, fix compilation warning
OK landry@, ajacoutot@
2011-04-18 12:39:03 +00:00

16 lines
411 B
Plaintext

$OpenBSD: patch-TerminalView_m,v 1.1 2011/04/18 12:39:36 sebastia Exp $
fix implicit declaration warnings of forkpty and ioctl
--- TerminalView.m.orig Fri Apr 15 13:05:54 2011
+++ TerminalView.m Fri Apr 15 13:06:12 2011
@@ -41,6 +41,8 @@ activated */
# include <pcap.h>
#elif defined(__OpenBSD__)
# include <termios.h>
+# include <util.h>
+# include <sys/ioctl.h>
#else
# include <termio.h>
#endif