From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14646 invoked by alias); 7 Apr 2013 17:46:37 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 31230 Received: (qmail 24019 invoked from network); 7 Apr 2013 17:46:34 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.2 Received-SPF: neutral (ns1.primenet.com.au: 209.85.212.176 is neither permitted nor denied by SPF record at ntlworld.com) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:x-proxyuser-ip:date:from:to:subject:message-id :in-reply-to:references:x-mailer:mime-version:content-type :content-transfer-encoding:x-gm-message-state; bh=pfGClkfa43FWw2/pMct6IcKG6AnfZgLcas881XJEgQU=; b=o4lnwf5GZUc54luIrKkDHtPEAIfDm2lkVIlT0jCM41/53LhEV8btHsp7sYDNtU83VZ OOHlsikykc7jXlr0G8CS6Z9l5ivscmPI/5HnC+suKqwxgqGuqPb0usopBRH6N2DSOpxC 3XvS/06hNPzvP4msy+LZETGmoJXeWhrSvr0Ap5y+GCySGUEONupj8HevVPe6k+5qEhDT ZrbdXd+9AXBEIY8ZtpaHiOyjxNqHjNFjW5x4s17XYe2pild8nOEmqoECDhmhGAzuwKQM bXMFfsU1XZYthFP9NQpt3gOJhaDovtdm7KilGIJIyAqyDQX0PLORHdaJ+Rs0T0B6Fu3H WsCA== X-Received: by 10.194.88.138 with SMTP id bg10mr27172958wjb.13.1365355446701; Sun, 07 Apr 2013 10:24:06 -0700 (PDT) X-ProxyUser-IP: 86.6.30.159 Date: Sun, 7 Apr 2013 18:24:04 +0100 From: Peter Stephenson To: zsh-workers@zsh.org Subject: Re: Function tgoto implicitly converted to pointer Message-ID: <20130407182404.308984bd@pws-pc.ntlworld.com> In-Reply-To: <1565658.2bmoXxmgiv@thuban> References: <1565658.2bmoXxmgiv@thuban> X-Mailer: Claws Mail 3.8.0 (GTK+ 2.24.7; x86_64-redhat-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Gm-Message-State: ALoCoQk05BbfHLRU/tKZA1FDUKDSJv0LYN5AXEr4BhKucFZc1if/ibRrgmw/fyZKuU4Dgq7urscu On Sat, 06 Apr 2013 14:19:48 -0400 Nick Bryda wrote: > Function `tgoto' implicitly converted to pointer at > ../../../Src/Zle/zle_refresh.c:2361 >... > This is often due to a missing function prototype definition. It's highly likely in this case: getting the right headers for the terminal libraries, particularly in a way that works on older systems, is nasty. In the worst case, TGOTO_PROTO_MISSING should be defined by a test in configure.ac: evidently it isn't here, so I suppose the code around line 1652 of configure.ac isn't working for some reason. What should happen is if the duff prototype on 1655 *does* compile, we know there *can't* be a valid prototype already. It may be that it's failing to compile for some other reason. Axel is probably more help with the details. pws