From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS22989 209.51.188.0/24 X-Spam-Status: No, score=-4.2 required=3.0 tests=AWL,BAYES_00, MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI,RCVD_IN_MSPIKE_H4, RCVD_IN_MSPIKE_WL,SPF_HELO_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id 4B8561F5AE for ; Fri, 7 May 2021 06:23:26 +0000 (UTC) Received: from localhost ([::1]:42298 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lettV-0002Oi-GB for normalperson@yhbt.net; Fri, 07 May 2021 02:23:25 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:43020) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lettS-0002Oc-Bq for bug-gnulib@gnu.org; Fri, 07 May 2021 02:23:22 -0400 Received: from freefriends.org ([96.88.95.60]:42750) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lettO-0002sf-JN for bug-gnulib@gnu.org; Fri, 07 May 2021 02:23:22 -0400 X-Envelope-From: arnold@skeeve.com Received: from freefriends.org (freefriends.org [96.88.95.60]) by freefriends.org (8.14.7/8.14.7) with ESMTP id 1476NDkj030773 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Fri, 7 May 2021 00:23:14 -0600 Received: (from arnold@localhost) by freefriends.org (8.14.7/8.14.7/Submit) id 1476NDrb030772; Fri, 7 May 2021 00:23:13 -0600 From: arnold@skeeve.com Message-Id: <202105070623.1476NDrb030772@freefriends.org> X-Authentication-Warning: frenzy.freefriends.org: arnold set sender to arnold@skeeve.com using -f Date: Fri, 07 May 2021 00:23:13 -0600 To: noloader@gmail.com, arnold@skeeve.com Subject: Re: malloc/dynarray-skeleton.c problems on MacOS 10.13.6 and 10.15.7 References: <202105070612.1476CpdF029444@freefriends.org> In-Reply-To: User-Agent: Heirloom mailx 12.5 7/5/10 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Received-SPF: none client-ip=96.88.95.60; envelope-from=arnold@skeeve.com; helo=freefriends.org X-Spam_score_int: -41 X-Spam_score: -4.2 X-Spam_bar: ---- X-Spam_report: (-4.2 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_MED=-2.3, SPF_HELO_PASS=-0.001, SPF_NONE=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: bug-gnulib@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Gnulib discussion list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: bug-gnulib@gnu.org, beebe@math.utah.edu Errors-To: bug-gnulib-bounces+normalperson=yhbt.net@gnu.org Sender: "bug-gnulib" Jeffrey Walton wrote: > On Fri, May 7, 2021 at 2:13 AM wrote: > > > > Hi Paul & Jim, > > > > Please see the report below from Nelson Beebe, attempting to build > > https://www.skeeve.com/gawk/gawk-5.1.1a.tar.gz on recent MacOS. > > This a test release, working towards a real release. > > > > Can you pleae work directly with Nelson in terms of patches etc and > > then let me know when Gnulib is updated? > > I can't speak for others, but I solve it with: > > grep -IR nonnull ./* | cut -f 1 -d ':' | sort | uniq > > Then, for each file in the list: > > sed -e 's/__nonnull ((1))//g' \ > -e 's/__nonnull ((1, 2))//g' \ > "${file}" > "${file}.fixed" > mv "${file}.fixed" "${file}" > > (You will need it for more than Awk. Wget and a couple of others need > the treatment, too). > > Jeff Thanks. I can do this, but I'd prefer to see it fixed upstream... Arnold