Package: bastet
Severity: important
Tags: patch

Hi!

bastet fails to build because it depends on obsolete termio (instead of
termios).

Actualy it isn't using old termio declarations so a simple
s/termio.h/termios.h/g did the work.  Patch attached.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: kfreebsd-i386 (i586)
Shell:  /bin/sh linked to /bin/bash
Kernel: GNU/kFreeBSD 5.3-11
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)
diff -ur bastet-0.41.old/bast.c bastet-0.41/bast.c
--- bastet-0.41.old/bast.c	2004-10-15 23:58:52.000000000 +0200
+++ bastet-0.41/bast.c	2005-07-04 21:01:15.000000000 +0200
@@ -1,7 +1,7 @@
 #include <stdlib.h>
 #include <stdio.h>
 #include <ncurses.h>
-#include <termio.h>
+#include <termios.h>
 #include <assert.h>
 #include <unistd.h>
 #include <string.h>

Reply via email to