pkgsrc/misc/screen/patches/patch-as
spz a1e7af1e84 Fix build failure:
NetBSD-current added dwarf.h and that made the code assume that sys/stropts.h
was present without greater need, since configure also checks for
HAVE_SYS_STROPTS_H.
2010-01-01 19:38:44 +00:00

13 lines
266 B
Text

$NetBSD: patch-as,v 1.1 2010/01/01 19:38:44 spz Exp $
--- tty.sh.orig 2003-09-08 14:24:25.000000000 +0000
+++ tty.sh
@@ -76,7 +76,7 @@ exit 0
#endif
#include "config.h"
-#ifdef SVR4
+#ifdef HAVE_SYS_STROPTS_H
#include <sys/stropts.h> /* for I_POP */
#endif