Bug 119100

Summary: [Patch] lang/logo: switch from sgtty to termios
Product: Ports & Packages Reporter: Ed Schouten <ed>
Component: Individual Port(s)Assignee: Martin Wilke <miwi>
Status: Closed FIXED    
Severity: Affects Only Me    
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   
Attachments:
Description Flags
file.diff none

Description Ed Schouten 2007-12-28 13:50:00 UTC
The lang/logo port makes use of the sgtty interface. We'd better let it
use the termios interface, because the first one will not work on
systems where COMPAT_43TTY is not present in the kernel. Because ucblogo
also has termio code, it isn't hard to port it to termios.

Fix: The following patch extends the existing patch to term.c to use the
existing termio code, ported to termios.

Please notice that even though the port will now use termios, it will
still give warnings during compilation about sgtty. Those warnings don't
matter, because they include sgtty.h in almost every file, only if it
exists (autoconf).
Comment 1 Martin Wilke freebsd_committer freebsd_triage 2007-12-28 14:00:08 UTC
Responsible Changed
From-To: freebsd-ports-bugs->miwi

I'll take it.
Comment 2 dfilter service freebsd_committer freebsd_triage 2008-01-03 21:03:55 UTC
miwi        2008-01-03 21:03:46 UTC

  FreeBSD ports repository

  Modified files:
    lang/logo            Makefile 
    lang/logo/files      patch-term.c 
  Log:
  - Use termios instead of sgtty
  
  PR:             119100
  Submitted by:   Ed Schouten <ed@fxq.nl>
  
  Revision  Changes    Path
  1.41      +2 -2      ports/lang/logo/Makefile
  1.2       +55 -0     ports/lang/logo/files/patch-term.c
_______________________________________________
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
Comment 3 Martin Wilke freebsd_committer freebsd_triage 2008-01-03 21:05:28 UTC
State Changed
From-To: open->closed

Committed. Thanks!