From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 9 14:40:05 2008 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 019B41065670 for ; Tue, 9 Sep 2008 14:40:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E517D8FC16 for ; Tue, 9 Sep 2008 14:40:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m89Ee4Pd078604 for ; Tue, 9 Sep 2008 14:40:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m89Ee4nZ078603; Tue, 9 Sep 2008 14:40:04 GMT (envelope-from gnats) Date: Tue, 9 Sep 2008 14:40:04 GMT Message-Id: <200809091440.m89Ee4nZ078603@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Joe Kelsey Cc: Subject: Re: ports/127182: shells/ksh93 fails to build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Joe Kelsey List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Sep 2008 14:40:05 -0000 The following reply was made to PR ports/127182; it has been noted by GNATS. From: Joe Kelsey To: bug-followup@FreeBSD.org, ler@lerctr.org Cc: Subject: Re: ports/127182: shells/ksh93 fails to build Date: Tue, 09 Sep 2008 07:09:11 -0700 This is a multi-part message in MIME format. --------------010901090707020205010300 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Glenn Fowler's response attached. --------------010901090707020205010300 Content-Type: message/rfc822; name="Attached Message" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="Attached Message" X-Account-Key: account3 X-Mozilla-Keys: Return-Path: Delivered-To: joe@zircon.seattle.wa.us Received: (qmail 86530 invoked from network); 9 Sep 2008 03:44:35 -0000 Received: from mail-dark.research.att.com (HELO mail-yellow.research.att.com) (192.20.225.112) by 192.168.254.1 with ESMTP; 9 Sep 2008 03:44:35 -0000 Received: from penguin.research.att.com (penguin.research.att.com [135.207.20.192]) by mail-green.research.att.com (Postfix) with ESMTP id 5BEE38F09; Mon, 8 Sep 2008 23:44:03 -0400 (EDT) Received: (from gsf@localhost) by penguin.research.att.com (8.13.1/8.12.10/Submit) id m893i3cA019542; Mon, 8 Sep 2008 23:44:03 -0400 Date: Mon, 8 Sep 2008 23:44:03 -0400 From: Glenn Fowler Message-Id: <200809090344.m893i3cA019542@penguin.research.att.com> Organization: AT&T Research X-Mailer: mailx (AT&T/BSD) 9.9 2008-02-12 Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=_=_=_=_=gsf==494E==48C5F0A1==" References: <48C5E476.7070401@zircon.seattle.wa.us> To: gsf@research.att.com, joe@zircon.seattle.wa.us Subject: Re: [Fwd: shells/ksh93 build fails 8-CURRENT] This is a multipart message in MIME format. --=_=_=_=_=gsf==494E==48C5F0A1== Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit patch attached that #ifdef's TAB[12] your line number may differ it must be a bsd bug since TAB[12] are in posix --=_=_=_=_=gsf==494E==48C5F0A1== Content-Type: text/plain; charset=us-ascii; name="stty.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="stty.patch" --- .../RELEASE Tue Jun 17 03:44:17 2008 +++ RELEASE Mon Sep 8 23:39:42 2008 @@ -1,3 +1,4 @@ +08-09-08 stty.c: #ifdef guard TAB[012] -- freebsd: damn the posix, full speed ahead 08-06-17 shcmd.h: move to libast 08-04-24 uniq.c: add optget() 'n' option for -1 => -f1 08-04-24 getconf.c: clarify diffs between "name - value" and "name = value" --- .../stty.c Fri Apr 4 04:22:27 2008 +++ stty.c Mon Sep 8 23:36:44 2008 @@ -294,9 +294,15 @@ #endif #ifdef TABDLY { "tabs", TABS, O_FLAG, IG, TABDLY, TAB3, C("Preserve (expand to spaces) tabs") }, +#ifdef TAB0 { "tab0", BITS, O_FLAG, IG|SS, TABDLY, TAB0 }, +#endif +#ifdef TAB1 { "tab1", BITS, O_FLAG, US, TABDLY, TAB1 }, +#endif +#ifdef TAB2 { "tab2", BITS, O_FLAG, US, TABDLY, TAB2 }, +#endif { "tab3", BITS, O_FLAG, US, TABDLY, TAB3 }, #endif #ifdef BSDLY --=_=_=_=_=gsf==494E==48C5F0A1==-- --------------010901090707020205010300--