From ed@hoeg.nl  Fri Dec 28 15:34:19 2007
Return-Path: <ed@hoeg.nl>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id E7A0316A417
	for <FreeBSD-gnats-submit@freebsd.org>; Fri, 28 Dec 2007 15:34:19 +0000 (UTC)
	(envelope-from ed@hoeg.nl)
Received: from palm.hoeg.nl (mx0.hoeg.nl [IPv6:2001:610:652::211])
	by mx1.freebsd.org (Postfix) with ESMTP id 7F79C13C45B
	for <FreeBSD-gnats-submit@freebsd.org>; Fri, 28 Dec 2007 15:34:19 +0000 (UTC)
	(envelope-from ed@hoeg.nl)
Received: by palm.hoeg.nl (Postfix, from userid 1000)
	id 979B91CD16; Fri, 28 Dec 2007 16:32:12 +0100 (CET)
Message-Id: <20071228153212.979B91CD16@palm.hoeg.nl>
Date: Fri, 28 Dec 2007 16:32:12 +0100 (CET)
From: Ed Schouten <ed@fxq.nl>
Reply-To: Ed Schouten <ed@fxq.nl>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: [Patch] math/asir2000: don't include sgtty.h
X-Send-Pr-Version: 3.113
X-GNATS-Notify: saito@asir.org

>Number:         119106
>Category:       ports
>Synopsis:       [Patch] math/asir2000: don't include sgtty.h
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    miwi
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Fri Dec 28 15:40:01 UTC 2007
>Closed-Date:    Thu Jan 03 21:05:37 UTC 2008
>Last-Modified:  Thu Jan  3 21:10:08 UTC 2008
>Originator:     Ed Schouten
>Release:        FreeBSD 6.3-PRERELEASE i386
>Organization:
>Environment:
System: FreeBSD palm.hoeg.nl 6.3-PRERELEASE FreeBSD 6.3-PRERELEASE #0: Wed Dec 19 16:07:46 CET 2007 ed@palm.hoeg.nl:/usr/obj/usr/src/sys/PALM i386
>Description:
The math/asir2000 port includes the <sgtty.h> header file on FreeBSD,
even though it isn't needed (one might wonder which platform *does* need
it). We'd better not include it, because sgtty.h has been deprecated for
a very very long time.
>How-To-Repeat:
>Fix:
--- math/asir2000/files/patch-ag	2007-07-19 18:24:19.000000000 +0200
+++ math/asir2000/files/patch-ag	2007-12-28 16:31:52.000000000 +0100
@@ -1,6 +1,6 @@
 --- parse/glob.c.orig	Thu Jan  4 00:48:08 2007
 +++ parse/glob.c	Wed Jul 18 12:25:46 2007
-@@ -51,6 +51,7 @@
+@@ -51,10 +51,11 @@
  #include "al.h"
  #include "parse.h"
  #include "ox.h"
@@ -8,6 +8,11 @@
  #if defined(PARI)
  #include "genpari.h"
  #endif
+-#if !defined(VISUAL) && !defined(_PA_RISC1_1) && !defined(linux) && !defined(SYSV) && !defined(__CYGWIN__) && !defined(__INTERIX)
++#if !defined(VISUAL) && !defined(_PA_RISC1_1) && !defined(linux) && !defined(SYSV) && !defined(__CYGWIN__) && !defined(__INTERIX) && !defined(__FreeBSD__)
+ #include <sgtty.h>
+ #endif
+ 
 @@ -765,7 +766,7 @@
  char *get_pariversion() 
  {
>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->feedback 
State-Changed-By: edwin 
State-Changed-When: Fri Dec 28 15:40:08 UTC 2007 
State-Changed-Why:  
Awaiting maintainers feedback (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=119106 
Responsible-Changed-From-To: freebsd-ports-bugs->miwi 
Responsible-Changed-By: miwi 
Responsible-Changed-When: Fri Dec 28 16:11:30 UTC 2007 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=119106 

From: saito <saito@asir.org>
To: bug-followup@FreeBSD.ORG
Cc:  
Subject: Re: ports/119106: [Patch] math/asir2000: don't include sgtty.h
Date: Mon, 31 Dec 2007 02:12:23 +0900

 I agree this submitt (PR ports/119106).
 Please comit this pr.
 
           ----------------------------------------------
               We are plotting.
                          Saito Tomokatsu
                             saito@asir.org
           ----------------------------------------------
 
State-Changed-From-To: feedback->open 
State-Changed-By: miwi 
State-Changed-When: Sun Dec 30 17:38:34 UTC 2007 
State-Changed-Why:  
Maintainer has approved. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=119106 
State-Changed-From-To: open->closed 
State-Changed-By: miwi 
State-Changed-When: Thu Jan 3 21:05:36 UTC 2008 
State-Changed-Why:  
Committed. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=119106 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/119106: commit references a PR
Date: Thu,  3 Jan 2008 21:03:40 +0000 (UTC)

 miwi        2008-01-03 21:03:32 UTC
 
   FreeBSD ports repository
 
   Modified files:
     math/asir2000/files  patch-ag 
   Log:
   The math/asir2000 port includes the <sgtty.h> header file on FreeBSD,
   even though it isn't needed (one might wonder which platform *does* need
   it). We'd better not include it, because sgtty.h has been deprecated for
   a very very long time.
   
   PR:             119106
   Submitted by:   Ed Schouten <ed@fxq.nl>
   Approved by:    maintainer
   
   Revision  Changes    Path
   1.7       +6 -1      ports/math/asir2000/files/patch-ag
 _______________________________________________
 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"
 
>Unformatted:
