Bug#345247: ser2net: FTBFS on GNU/kFreeBSD

2006-01-02 Thread Marc Haber
On Thu, Dec 29, 2005 at 10:46:47PM +0100, Aurelien Jarno wrote:
 That's the purpose of the patch attached. Could you please add it in
 your next upload?

I have forwarded the patch upstream and they promptly releases ser2net
2.3. Can you please verify that the packages on
http://zg.debian.zugschlus.de/zg/pool/main/ser2net build on
GNU/kFreeBSD?

Greetings
Marc

-- 
-
Marc Haber | I don't trust Computers. They | Mailadresse im Header
Mannheim, Germany  |  lose things.Winona Ryder | Fon: *49 621 72739834
Nordisch by Nature |  How to make an American Quilt | Fax: *49 621 72739835


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#345247: ser2net: FTBFS on GNU/kFreeBSD

2006-01-02 Thread Aurelien Jarno
On Mon, Jan 02, 2006 at 09:58:27AM +0100, Marc Haber wrote:
 On Thu, Dec 29, 2005 at 10:46:47PM +0100, Aurelien Jarno wrote:
  That's the purpose of the patch attached. Could you please add it in
  your next upload?
 
 I have forwarded the patch upstream and they promptly releases ser2net
 2.3. Can you please verify that the packages on
 http://zg.debian.zugschlus.de/zg/pool/main/ser2net build on
 GNU/kFreeBSD?
 
It works well, thanks!

FYI, if you need to access to a GNU/kFreeBSD machine, io.debian.net is
available to Debian developers. Please see http://io.debian.net/ssh.html

Bye,
Aurelien
-- 
  .''`.  Aurelien Jarno | GPG: 1024D/F1BCDB73
 : :' :  Debian developer   | Electrical Engineer
 `. `'   [EMAIL PROTECTED] | [EMAIL PROTECTED]
   `-people.debian.org/~aurel32 | www.aurel32.net


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#345247: ser2net: FTBFS on GNU/kFreeBSD

2005-12-29 Thread Aurelien Jarno
Package: ser2net
Severity: important
Tags: patch

Hi,

ser2net fails to build on GNU/kFreeBSD because termio.h is not
portable and does not exists on such a system. If you look at
/usr/include/termio.h on a GNU/Linux system, you will see it only
contains:
#include termios.h
#include sys/ioctl.h

As termios.h is already included in the source code of ser2net,
sys/ioctl.h could be used instead of termio.h, and that is portable.

That's the purpose of the patch attached. Could you please add it in
your next upload?

Thanks in advance,
Aurelien

-- System Information:
Debian Release: testing/unstable
Architecture: kfreebsd-i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: GNU/kFreeBSD 5.4-1-686
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Status: in BTS
Author: aurel32

--- ser2net-2.2.orig/devcfg.c
+++ ser2net-2.2/devcfg.c
@@ -21,7 +21,7 @@
 
 #include unistd.h
 #include termios.h
-#include termio.h
+#include sys/ioctl.h
 #include sys/types.h
 #include stdlib.h
 #include string.h