Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: 4.3.1 released



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 <pws@xxxxxxx>                  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



Messages sorted by: Reverse Date, Date, Thread, Author