Your message dated Sun, 9 Dec 2007 12:42:00 +0100
with message-id <[EMAIL PROTECTED]>
and subject line done: minicom: FTBFS on GNU/kFreeBSD
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: minicom
Severity: important
Version: 2.3~rc1-1
Tags: patch
User: [EMAIL PROTECTED]
Usertags: kfreebsd

Hi,

the current version fails to build on GNU/kFreeBSD.

It is due to usage of non-posix TCGETS.
Please use portable tcgetattr() instead.

It would also be nice if you can ask upstream
to include this changes.

Thanks in advance

                        Petr



--- src/main.c~ 2007-11-12 16:10:51.000000000 +0100
+++ src/main.c  2007-11-12 16:10:51.000000000 +0100
@@ -526,7 +526,7 @@
   struct termios t;
   if (portfd_is_socket && portfd_is_connected)
     return 1;
-  return !ioctl(fd, TCGETS, &t);
+  return !tcgetattr(fd, &t);
 }

 /* Update the timer display. This can also be called from updown.c */




--- End Message ---
--- Begin Message ---
Bug resolved by upload of minicom 2.3~rc1-2.

Martin


--- End Message ---

Reply via email to