summaryrefslogtreecommitdiff
path: root/textproc
diff options
context:
space:
mode:
authorasau <asau@pkgsrc.org>2014-04-17 21:30:14 +0000
committerasau <asau@pkgsrc.org>2014-04-17 21:30:14 +0000
commit3cf1704072fd4c4c5e40eb108b25c118487f8496 (patch)
treea536c76ed35bf5b820a2b499b413726ad51f36ce /textproc
parent8aff3ba95d561ef0efc4f8979378b543ed7e61cd (diff)
downloadpkgsrc-3cf1704072fd4c4c5e40eb108b25c118487f8496.tar.gz
Use termios on FreeBSD too. Fixes build on FreeBSD 10.
Diffstat (limited to 'textproc')
-rw-r--r--textproc/ispell/distinfo4
-rw-r--r--textproc/ispell/patches/patch-ak6
2 files changed, 5 insertions, 5 deletions
diff --git a/textproc/ispell/distinfo b/textproc/ispell/distinfo
index fec96c9d8b1..7544f098ebe 100644
--- a/textproc/ispell/distinfo
+++ b/textproc/ispell/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.1 2013/04/24 02:20:36 rodent Exp $
+$NetBSD: distinfo,v 1.2 2014/04/17 21:30:14 asau Exp $
SHA1 (ispell-3.3.02.tar.gz) = c0d98e1af3afb8e0b642717c03439ff8881e3d60
RMD160 (ispell-3.3.02.tar.gz) = 12edc94ebb7c1f4040bd8f5b0dbb8f40326aa781
@@ -9,7 +9,7 @@ SHA1 (patch-ac) = 02b94c918164c19ec7cba5c9b88b7168a6f37925
SHA1 (patch-ad) = 86bcb4c4b34a970b5f3eba6d406a8b8204fccf39
SHA1 (patch-ae) = 0b19b5f4f2a0faf74ce130b7414bdf85b7588954
SHA1 (patch-ai) = 210d80ca55fc1d4fb5aa308205d8630a7f4bfb67
-SHA1 (patch-ak) = aed34699d30d05a61bc2bd4d2ebf88e170ccd65c
+SHA1 (patch-ak) = 40b2c656bae16a6bfd6bada3574a02ec0789167a
SHA1 (patch-al) = 27d87b52dc5507e9dbab73bb9643fa490920216d
SHA1 (patch-ar) = 872cfc47e3652716afab9561fcf4a1bda2cee61a
SHA1 (patch-as) = fd3b2ec1788a7ffc4c871f5564742aad41fadda9
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)