summaryrefslogtreecommitdiff
path: root/textproc/ispell/patches
diff options
context:
space:
mode:
authorasau <asau>2014-04-17 21:30:14 +0000
committerasau <asau>2014-04-17 21:30:14 +0000
commitd44bab53bbf47ab5b7608227f8430ddc77d105ed (patch)
treea536c76ed35bf5b820a2b499b413726ad51f36ce /textproc/ispell/patches
parent89f7351cc458b5e82a50b8505aa95a8d8519c95c (diff)
downloadpkgsrc-d44bab53bbf47ab5b7608227f8430ddc77d105ed.tar.gz
Use termios on FreeBSD too. Fixes build on FreeBSD 10.
Diffstat (limited to 'textproc/ispell/patches')
-rw-r--r--textproc/ispell/patches/patch-ak6
1 files changed, 3 insertions, 3 deletions
diff --git a/textproc/ispell/patches/patch-ak b/textproc/ispell/patches/patch-ak
index 23986765c9f..b061e54815f 100644
--- a/textproc/ispell/patches/patch-ak
+++ b/textproc/ispell/patches/patch-ak
@@ -1,13 +1,13 @@
-$NetBSD: patch-ak,v 1.1 2013/04/24 02:20:36 rodent Exp $
+$NetBSD: patch-ak,v 1.2 2014/04/17 21:30:14 asau Exp $
---- term.c.orig 2005-04-15 11:11:36.000000000 +1200
+--- term.c.orig 2005-04-14 23:11:36.000000000 +0000
+++ term.c
@@ -86,7 +86,10 @@ static char Rcs_Id[] =
#include "ispell.h"
#include "proto.h"
#include "msgs.h"
-#ifdef USG
-+#if defined(__NetBSD__) || defined(linux) || defined(__sgi) || defined(__INTERIX)
++#if defined(__NetBSD__) || defined(__FreeBSD__) || defined(linux) || defined(__sgi) || defined(__INTERIX)
+#define USE_TERMIOS
+#include <termios.h>
+#elif defined(USG)