Package: vbox3
Version: 0.1.9.3
Severity: important
Tags: patch

Hi,

currently your package FTBFS on GNU/kFreeBSD due to outdated
config.{guess,sub} scripts, as you can see on
<http://experimental.ftbfs.de/build.php?arch=kfreebsd-i386&pkg=vbox3>.

Please update them using autotools-dev's one (/usr/share/misc), and
apply the attached patch to allow the build on GNU/kFreeBSD. You can
have a look at autotools-dev's README.Debian to see how it is possible
to automate the copy of these scripts.

Cheers,

-- 
Cyril Brulebois
--- vbox3-0.1.9.3/vboxgetty/libvboxmodem.c	2001-01-14 14:50:20.000000000 +0100
+++ vbox3-0.1.9.3/vboxgetty/libvboxmodem.c	2007-03-20 16:15:08.000000000 +0100
@@ -15,7 +15,13 @@
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <fcntl.h>
+#if !defined(__FreeBSD_kernel__)
 #include <termio.h>
+#else
+#include <termios.h>
+/* No such define on GNU/kFreeBSD, used once, in a OR statement */
+#define TAB3 0
+#endif
 
 #include "libvboxmodem.h"
 
--- vbox3-0.1.9.3/vboxgetty/modem.c	2001-01-14 14:50:20.000000000 +0100
+++ vbox3-0.1.9.3/vboxgetty/modem.c	2007-03-20 16:15:08.000000000 +0100
@@ -26,7 +26,11 @@
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <fcntl.h>
+#if !defined(__FreeBSD_kernel__)
 #include <termio.h>
+#else
+#include <termios.h>
+#endif
 #include <signal.h>
 
 #include "log.h"

Reply via email to