From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS3215 2.0.0.0/16 X-Spam-Status: No, score=-2.2 required=3.0 tests=AWL,BAYES_00,SPF_SOFTFAIL shortcircuit=no autolearn=no autolearn_force=no version=3.4.0 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1ZeTfV-0007OV-9b for mharc-bug-gnulib@gnu.org; Tue, 22 Sep 2015 15:56:01 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56237) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZeTfP-0007NO-1S for bug-gnulib@gnu.org; Tue, 22 Sep 2015 15:55:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZeTWU-0000Wt-OV for bug-gnulib@gnu.org; Tue, 22 Sep 2015 15:46:49 -0400 Received: from zimbra.cs.ucla.edu ([131.179.128.68]:53258) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZeTWU-0000We-C1 for bug-gnulib@gnu.org; Tue, 22 Sep 2015 15:46:42 -0400 Received: from localhost (localhost [127.0.0.1]) by zimbra.cs.ucla.edu (Postfix) with ESMTP id 6ECFD161130; Tue, 22 Sep 2015 12:46:41 -0700 (PDT) Received: from zimbra.cs.ucla.edu ([127.0.0.1]) by localhost (zimbra.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10032) with ESMTP id VnzQ7nNVqles; Tue, 22 Sep 2015 12:46:40 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by zimbra.cs.ucla.edu (Postfix) with ESMTP id 8C968161136; Tue, 22 Sep 2015 12:46:40 -0700 (PDT) X-Virus-Scanned: amavisd-new at zimbra.cs.ucla.edu Received: from zimbra.cs.ucla.edu ([127.0.0.1]) by localhost (zimbra.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id ap5-iGLOhYt7; Tue, 22 Sep 2015 12:46:40 -0700 (PDT) Received: from Penguin.CS.UCLA.EDU (Penguin.CS.UCLA.EDU [131.179.64.200]) by zimbra.cs.ucla.edu (Postfix) with ESMTPSA id 720931605E9; Tue, 22 Sep 2015 12:46:40 -0700 (PDT) Subject: Re: [PATCH] IBM z/OS + EBCDIC support To: "Daniel Richard G." , bug-gnulib@gnu.org References: <1442888927.2328038.389926169.50DB0133@webmail.messagingengine.com> <5601ACB5.3010005@cs.ucla.edu> From: Paul Eggert Organization: UCLA Computer Science Department Message-ID: <5601B01F.8020802@cs.ucla.edu> Date: Tue, 22 Sep 2015 12:46:39 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.1.0 MIME-Version: 1.0 In-Reply-To: <5601ACB5.3010005@cs.ucla.edu> Content-Type: multipart/mixed; boundary="------------050302070801050305000407" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 131.179.128.68 X-BeenThere: bug-gnulib@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Gnulib discussion list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Sep 2015 19:56:00 -0000 This is a multi-part message in MIME format. --------------050302070801050305000407 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Ooops, I forgot to add a dependency. I installed the attached followup patch. --------------050302070801050305000407 Content-Type: text/x-patch; name="0001-modules-c-ctype-Depends-on-Add-verify.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="0001-modules-c-ctype-Depends-on-Add-verify.patch" >>From 07ed58f3c5b54fe3935ce522dbc1c1a716185e67 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Tue, 22 Sep 2015 12:44:25 -0700 Subject: [PATCH] * modules/c-ctype (Depends-on): Add verify. --- ChangeLog | 1 + modules/c-ctype | 1 + 2 files changed, 2 insertions(+) diff --git a/ChangeLog b/ChangeLog index 8723b38..4ae3a57 100644 --- a/ChangeLog +++ b/ChangeLog @@ -20,6 +20,7 @@ Prefer true and false to 1 and 0, for booleans. (c_iscntrl): Use 'if', not 'ifdef'. Special case for EBCDIC. Verify that the character set is either ASCII or EBCDIC. + * modules/c-ctype (Depends-on): Add verify. * tests/test-c-ctype.c: Include , for CHAR_MIN (to_char): New function. (test_all): Port to EBCDIC. Add some more tests, e.g., for c_ispunct. diff --git a/modules/c-ctype b/modules/c-ctype index 7be209f..b172d13 100644 --- a/modules/c-ctype +++ b/modules/c-ctype @@ -7,6 +7,7 @@ lib/c-ctype.c Depends-on: stdbool +verify configure.ac: -- 2.1.0 --------------050302070801050305000407--