summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorchristos <christos>1999-11-29 04:38:22 +0000
committerchristos <christos>1999-11-29 04:38:22 +0000
commita4f794436901e4b79039c47c994970f33e8594c7 (patch)
tree8142280de13841c84b5aa4f2c8028b2ba79d2b6f /net
parent5fb9eba4e9743b885266f5f37225f376c6b1651a (diff)
downloadpkgsrc-a4f794436901e4b79039c47c994970f33e8594c7.tar.gz
depend on the existance of the define TIOCSTI to enable it, not SYSV
Diffstat (limited to 'net')
-rw-r--r--net/icb/patches/patch-as21
1 files changed, 21 insertions, 0 deletions
diff --git a/net/icb/patches/patch-as b/net/icb/patches/patch-as
new file mode 100644
index 00000000000..85169689c7e
--- /dev/null
+++ b/net/icb/patches/patch-as
@@ -0,0 +1,21 @@
+$NetBSD: patch-as,v 1.1 1999/11/29 04:38:22 christos Exp $
+
+--- unix.c.orig Sun Nov 28 23:33:27 1999
++++ unix.c Sun Nov 28 23:35:51 1999
+@@ -92,13 +92,13 @@
+ pushback(c)
+ char c;
+ {
+-#ifndef SYSV
++#ifdef TIOCSTI
+ if (ioctl(0, TIOCSTI, &c) < 0)
+ perror("TIOCSTI ioctl failed");
+-#else /* SYSV */
++#else /* !TIOCSTI */
+ if (ungetc(c,stdin) == EOF)
+ perror("ungetc() failed");
+-#endif /* SYSV */
++#endif /* TIOCSTI */
+ }
+
+