From unknown Sat Jun 14 19:30:08 2025 X-Loop: help-debbugs@gnu.org Subject: bug#9714: [PATCH] maint: remove vestigial de-ANSI-fication support Resent-From: Stefano Lattarini Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-CC: bug-coreutils@gnu.org Resent-Date: Mon, 10 Oct 2011 12:40:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 9714 X-GNU-PR-Package: coreutils X-GNU-PR-Keywords: patch To: 9714@debbugs.gnu.org Cc: Stefano Lattarini X-Debbugs-Original-To: bug-coreutils@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.13182503502953 (code B ref -1); Mon, 10 Oct 2011 12:40:01 +0000 Received: (at submit) by debbugs.gnu.org; 10 Oct 2011 12:39:10 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1RDF8Q-0000la-9u for submit@debbugs.gnu.org; Mon, 10 Oct 2011 08:39:10 -0400 Received: from eggs.gnu.org ([140.186.70.92]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1RDF8O-0000lM-A4 for submit@debbugs.gnu.org; Mon, 10 Oct 2011 08:39:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RDF83-0002uq-9D for submit@debbugs.gnu.org; Mon, 10 Oct 2011 08:38:52 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, T_DKIM_INVALID, T_TO_NO_BRKTS_FREEMAIL autolearn=unavailable version=3.3.1 Received: from lists.gnu.org ([140.186.70.17]:51972) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RDF83-0002uh-7i for submit@debbugs.gnu.org; Mon, 10 Oct 2011 08:38:47 -0400 Received: from eggs.gnu.org ([140.186.70.92]:42400) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RDF81-0006Ws-MS for bug-coreutils@gnu.org; Mon, 10 Oct 2011 08:38:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RDF80-0002uR-O3 for bug-coreutils@gnu.org; Mon, 10 Oct 2011 08:38:45 -0400 Received: from mail-wy0-f169.google.com ([74.125.82.169]:37188) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RDF80-0002uK-IT for bug-coreutils@gnu.org; Mon, 10 Oct 2011 08:38:44 -0400 Received: by wyh15 with SMTP id 15so2989137wyh.0 for ; Mon, 10 Oct 2011 05:38:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; bh=4D+00UwHeZD3UcTOKyUEpU2fw0fFRtTpruQyr58zZq0=; b=clhwjpLLlLUy6Rf5izaOyIL025+OEz1f24UBo3ESn73W9igNqroFAEiNgwrBbttssV REuFWFxwHM/Vp39xWdB1NFxlMDXxbxxVIDO4tq+mbLzJ/ZvD5kc4QjBmqWc5ebgMQHYF ZHb7Nd9UO/VP6mbWOPC8wHZrmReSRmgRi4M04= Received: by 10.216.221.135 with SMTP id r7mr6753702wep.45.1318250323693; Mon, 10 Oct 2011 05:38:43 -0700 (PDT) Received: from localhost.localdomain (host172-102-dynamic.2-87-r.retail.telecomitalia.it. [87.2.102.172]) by mx.google.com with ESMTPS id j18sm32631728wbo.6.2011.10.10.05.38.41 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 10 Oct 2011 05:38:42 -0700 (PDT) From: Stefano Lattarini Date: Mon, 10 Oct 2011 14:38:34 +0200 Message-Id: X-Mailer: git-send-email 1.7.2.3 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 140.186.70.17 X-Spam-Score: -5.1 (-----) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -5.2 (-----) The support for automatic de-ANSI-fication has been deprecated in automake 1.11.2, and will be removed altogether in automake 1.12. Also, coreutils does not use the `ansi2knr' option since at least 2003-03-14 (commit b9fa45f2b01d0e395b7ddd845ebabb9528cf3f12 "remove ansi2knr junk", and a few preceding commits). * /m4/jm-macros.m4 (gl_CHECK_ALL_TYPES): Don't require `AM_C_PROTOTYPES' anymore. This is required to avoid a (mostly spurious) warning from automake. --- m4/jm-macros.m4 | 5 ----- 1 files changed, 0 insertions(+), 5 deletions(-) diff --git a/m4/jm-macros.m4 b/m4/jm-macros.m4 index 58b000d..40ff3e1 100644 --- a/m4/jm-macros.m4 +++ b/m4/jm-macros.m4 @@ -193,11 +193,6 @@ AC_DEFUN([gl_CHECK_ALL_HEADERS], # This macro must be invoked before any tests that run the compiler. AC_DEFUN([gl_CHECK_ALL_TYPES], [ - dnl This test must precede tests of compiler characteristics like - dnl that for the inline keyword, since it may change the degree to - dnl which the compiler supports such features. - AC_REQUIRE([AM_C_PROTOTYPES]) - dnl Checks for typedefs, structures, and compiler characteristics. AC_REQUIRE([gl_BIGENDIAN]) AC_REQUIRE([AC_C_VOLATILE]) -- 1.7.2.3 From unknown Sat Jun 14 19:30:08 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.427 (Entity 5.427) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Stefano Lattarini Subject: bug#9714: closed (Re: bug#9714: [PATCH] maint: remove vestigial de-ANSI-fication support) Message-ID: References: <87botpovfh.fsf@rho.meyering.net> X-Gnu-PR-Message: they-closed 9714 X-Gnu-PR-Package: coreutils X-Gnu-PR-Keywords: patch Reply-To: 9714@debbugs.gnu.org Date: Mon, 10 Oct 2011 12:59:01 +0000 Content-Type: multipart/mixed; boundary="----------=_1318251541-4735-1" This is a multi-part message in MIME format... ------------=_1318251541-4735-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #9714: [PATCH] maint: remove vestigial de-ANSI-fication support which was filed against the coreutils package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 9714@debbugs.gnu.org. --=20 9714: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D9714 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1318251541-4735-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 9714-done) by debbugs.gnu.org; 10 Oct 2011 12:58:25 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1RDFR3-0001Dd-G9 for submit@debbugs.gnu.org; Mon, 10 Oct 2011 08:58:25 -0400 Received: from mx.meyering.net ([88.168.87.75]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1RDFR1-0001DW-Jw for 9714-done@debbugs.gnu.org; Mon, 10 Oct 2011 08:58:24 -0400 Received: from rho.meyering.net (localhost.localdomain [127.0.0.1]) by rho.meyering.net (Acme Bit-Twister) with ESMTP id BC6D06009A; Mon, 10 Oct 2011 14:58:10 +0200 (CEST) From: Jim Meyering To: Stefano Lattarini Subject: Re: bug#9714: [PATCH] maint: remove vestigial de-ANSI-fication support In-Reply-To: (Stefano Lattarini's message of "Mon, 10 Oct 2011 14:38:34 +0200") References: Date: Mon, 10 Oct 2011 14:58:10 +0200 Message-ID: <87botpovfh.fsf@rho.meyering.net> Lines: 31 MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -3.0 (---) X-Debbugs-Envelope-To: 9714-done Cc: 9714-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -3.0 (---) Stefano Lattarini wrote: > The support for automatic de-ANSI-fication has been deprecated in > automake 1.11.2, and will be removed altogether in automake 1.12. > Also, coreutils does not use the `ansi2knr' option since at least > 2003-03-14 (commit b9fa45f2b01d0e395b7ddd845ebabb9528cf3f12 "remove > ansi2knr junk", and a few preceding commits). > > * /m4/jm-macros.m4 (gl_CHECK_ALL_TYPES): Don't require > `AM_C_PROTOTYPES' anymore. This is required to avoid a (mostly > spurious) warning from automake. > --- > m4/jm-macros.m4 | 5 ----- > 1 files changed, 0 insertions(+), 5 deletions(-) > > diff --git a/m4/jm-macros.m4 b/m4/jm-macros.m4 > index 58b000d..40ff3e1 100644 > --- a/m4/jm-macros.m4 > +++ b/m4/jm-macros.m4 > @@ -193,11 +193,6 @@ AC_DEFUN([gl_CHECK_ALL_HEADERS], > # This macro must be invoked before any tests that run the compiler. > AC_DEFUN([gl_CHECK_ALL_TYPES], > [ > - dnl This test must precede tests of compiler characteristics like > - dnl that for the inline keyword, since it may change the degree to > - dnl which the compiler supports such features. > - AC_REQUIRE([AM_C_PROTOTYPES]) Thanks. I did that a week or so ago: http://git.sv.gnu.org/cgit/coreutils.git/commit/?id=88873501cff9ed9 ------------=_1318251541-4735-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 10 Oct 2011 12:39:10 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1RDF8Q-0000la-9u for submit@debbugs.gnu.org; Mon, 10 Oct 2011 08:39:10 -0400 Received: from eggs.gnu.org ([140.186.70.92]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1RDF8O-0000lM-A4 for submit@debbugs.gnu.org; Mon, 10 Oct 2011 08:39:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RDF83-0002uq-9D for submit@debbugs.gnu.org; Mon, 10 Oct 2011 08:38:52 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, T_DKIM_INVALID, T_TO_NO_BRKTS_FREEMAIL autolearn=unavailable version=3.3.1 Received: from lists.gnu.org ([140.186.70.17]:51972) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RDF83-0002uh-7i for submit@debbugs.gnu.org; Mon, 10 Oct 2011 08:38:47 -0400 Received: from eggs.gnu.org ([140.186.70.92]:42400) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RDF81-0006Ws-MS for bug-coreutils@gnu.org; Mon, 10 Oct 2011 08:38:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RDF80-0002uR-O3 for bug-coreutils@gnu.org; Mon, 10 Oct 2011 08:38:45 -0400 Received: from mail-wy0-f169.google.com ([74.125.82.169]:37188) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RDF80-0002uK-IT for bug-coreutils@gnu.org; Mon, 10 Oct 2011 08:38:44 -0400 Received: by wyh15 with SMTP id 15so2989137wyh.0 for ; Mon, 10 Oct 2011 05:38:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; bh=4D+00UwHeZD3UcTOKyUEpU2fw0fFRtTpruQyr58zZq0=; b=clhwjpLLlLUy6Rf5izaOyIL025+OEz1f24UBo3ESn73W9igNqroFAEiNgwrBbttssV REuFWFxwHM/Vp39xWdB1NFxlMDXxbxxVIDO4tq+mbLzJ/ZvD5kc4QjBmqWc5ebgMQHYF ZHb7Nd9UO/VP6mbWOPC8wHZrmReSRmgRi4M04= Received: by 10.216.221.135 with SMTP id r7mr6753702wep.45.1318250323693; Mon, 10 Oct 2011 05:38:43 -0700 (PDT) Received: from localhost.localdomain (host172-102-dynamic.2-87-r.retail.telecomitalia.it. [87.2.102.172]) by mx.google.com with ESMTPS id j18sm32631728wbo.6.2011.10.10.05.38.41 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 10 Oct 2011 05:38:42 -0700 (PDT) From: Stefano Lattarini To: bug-coreutils@gnu.org Subject: [PATCH] maint: remove vestigial de-ANSI-fication support Date: Mon, 10 Oct 2011 14:38:34 +0200 Message-Id: X-Mailer: git-send-email 1.7.2.3 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 140.186.70.17 X-Spam-Score: -5.1 (-----) X-Debbugs-Envelope-To: submit Cc: Stefano Lattarini X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -5.2 (-----) The support for automatic de-ANSI-fication has been deprecated in automake 1.11.2, and will be removed altogether in automake 1.12. Also, coreutils does not use the `ansi2knr' option since at least 2003-03-14 (commit b9fa45f2b01d0e395b7ddd845ebabb9528cf3f12 "remove ansi2knr junk", and a few preceding commits). * /m4/jm-macros.m4 (gl_CHECK_ALL_TYPES): Don't require `AM_C_PROTOTYPES' anymore. This is required to avoid a (mostly spurious) warning from automake. --- m4/jm-macros.m4 | 5 ----- 1 files changed, 0 insertions(+), 5 deletions(-) diff --git a/m4/jm-macros.m4 b/m4/jm-macros.m4 index 58b000d..40ff3e1 100644 --- a/m4/jm-macros.m4 +++ b/m4/jm-macros.m4 @@ -193,11 +193,6 @@ AC_DEFUN([gl_CHECK_ALL_HEADERS], # This macro must be invoked before any tests that run the compiler. AC_DEFUN([gl_CHECK_ALL_TYPES], [ - dnl This test must precede tests of compiler characteristics like - dnl that for the inline keyword, since it may change the degree to - dnl which the compiler supports such features. - AC_REQUIRE([AM_C_PROTOTYPES]) - dnl Checks for typedefs, structures, and compiler characteristics. AC_REQUIRE([gl_BIGENDIAN]) AC_REQUIRE([AC_C_VOLATILE]) -- 1.7.2.3 ------------=_1318251541-4735-1--