From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13679 invoked from network); 28 Feb 2006 14:20:27 -0000 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.4 required=5.0 tests=AWL,BAYES_00, FORGED_RCVD_HELO autolearn=ham version=3.1.0 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 28 Feb 2006 14:20:27 -0000 Received: (qmail 41642 invoked from network); 28 Feb 2006 14:20:22 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 28 Feb 2006 14:20:22 -0000 Received: (qmail 18752 invoked by alias); 28 Feb 2006 14:20:20 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 22306 Received: (qmail 18742 invoked from network); 28 Feb 2006 14:20:19 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 28 Feb 2006 14:20:19 -0000 Received: (qmail 41335 invoked from network); 28 Feb 2006 14:20:19 -0000 Received: from cluster-c.mailcontrol.com (168.143.177.190) by a.mx.sunsite.dk with SMTP; 28 Feb 2006 14:20:17 -0000 Received: from exchange03.csr.com (uuk202166.uk.customer.alter.net [62.189.241.194] (may be forged)) by rly19c.srv.mailcontrol.com (MailControl) with ESMTP id k1SEKESr022952 for ; Tue, 28 Feb 2006 14:20:14 GMT Received: from csr.com ([10.103.143.38]) by exchange03.csr.com with Microsoft SMTPSVC(5.0.2195.6713); Tue, 28 Feb 2006 14:20:13 +0000 To: zsh-workers@sunsite.dk (Zsh hackers list) Subject: Re: 4.3.1 released In-reply-to: <20060228140411.GA2150@prunille.vinc17.org> References: <20060228140411.GA2150@prunille.vinc17.org> Date: Tue, 28 Feb 2006 14:19:56 +0000 From: Peter Stephenson Message-ID: X-OriginalArrivalTime: 28 Feb 2006 14:20:13.0739 (UTC) FILETIME=[170E4FB0:01C63C72] Content-Type: text/plain MIME-Version: 1.0 X-Scanned-By: MailControl A-06-00-04 (www.mailcontrol.com) on 10.67.0.129 Vincent Lefevre wrote: > I get a strange configure error: > > [...] > checking if the system adequately supports multibyte chars... no > ./configure: line 15889: test: =: unary operator expected > checking if your system uses ELF binaries... no > [...] Annoying, but should be harmless: the behaviour if test failed is the same as the default one, apart from the error message. > The configure script contains: > > # Check whether --enable-dynamic-nss or --disable-dynamic-nss was given. > if test "${enable_dynamic_nss+set}" = set; then > enableval="$enable_dynamic_nss" > zsh_cv_c_dynamic_nss=$enableval > fi; > > Line 15889 is zsh_cv_c_dynamic_nss=$enableval. I suspect it's actually the following (though the line number doesn't agree): Index: configure.ac =================================================================== RCS file: /cvsroot/zsh/zsh/configure.ac,v retrieving revision 1.49 diff -u -r1.49 configure.ac --- configure.ac 19 Feb 2006 19:36:32 -0000 1.49 +++ configure.ac 28 Feb 2006 14:16:53 -0000 @@ -2112,7 +2112,7 @@ AH_TEMPLATE([DISABLE_DYNAMIC_NSS], [Define to 1 if you want to avoid calling functions that will require dynamic NSS modules.]) -if test $zsh_cv_c_dynamic_nss = no; then +if test x$zsh_cv_c_dynamic_nss = xno; then AC_DEFINE(DISABLE_DYNAMIC_NSS) fi -- Peter Stephenson Software Engineer CSR PLC, Churchill House, Cambridge Business Park, Cowley Road Cambridge, CB4 0WZ, UK Tel: +44 (0)1223 692070 To access the latest news from CSR copy this link into a web browser: http://www.csr.com/email_sig.php