Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: zsh 5.0.8 available (preliminary announcement)
- X-seq: zsh-workers 35362
- From: Daniel Shahaf <d.s@xxxxxxxxxxxxxxxxxx>
- To: Oliver Kiddle <okiddle@xxxxxxxxxxx>
- Subject: Re: zsh 5.0.8 available (preliminary announcement)
- Date: Tue, 2 Jun 2015 10:26:11 +0000
- Cc: Baptiste Daroussin <baptiste.daroussin@xxxxxxxxx>, Zsh hackers list <zsh-workers@xxxxxxx>
- Dkim-signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= daniel.shahaf.name; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-sasl-enc :x-sasl-enc; s=mesmtp; bh=hjFITUD7NnchbGzGhJYwqcrfDqo=; b=tK8/4o TJ9kB8n97ODIbwzV1c0qonoI7LQjVMcILtAuTjRPWkh7n7/fIIcnu1QnualYhAHA GuNk5JkDxpPVZdn/qSYd69mrUHWxy42PnRhnB0XlkBEYtCkBc7CIdTNZfQuLQ3kk v6INcul+l9+Xf5j3M0PUK5ITEQOXdCmcFKnY4=
- Dkim-signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-sasl-enc :x-sasl-enc; s=smtpout; bh=hjFITUD7NnchbGzGhJYwqcrfDqo=; b=clxv6 mm3RiMiaOETSxwIDHxk/PYfmxfj5UR8M72Yjiwhip1pXj9X2oXgY4XaEZqt1ae2I ndRfRwBoZ5g3D9IBq6L0MDZ7fbtba9EgTw4wGCTp33Ej4jSiKWcc0pBIS1gY+hJK hhPqLQXE47SPZ5or6Inm18zcq52qb0NNAxEX7Q=
- In-reply-to: <20175.1433239580@thecus.kiddle.eu>
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
- References: <20150531192334.26a88ef9@ntlworld.com> <150531171724.ZM29828@torch.brasslantern.com> <CAPKC6oJ0fOEeg1--qpufEYQoxTeUnD8KDNSHV5Sfn7J4EtPYCw@mail.gmail.com> <20175.1433239580@thecus.kiddle.eu>
Oliver Kiddle wrote on Tue, Jun 02, 2015 at 12:06:20 +0200:
> Is the -o option to test safe to use in configure? It seems existing
> tests use || and && but the precedence of those wouldn't be right.
I suppose most portable would be a subshell, since the requirements it
places on the 'test' command are minimal:
+if ( test x$ac_cv_have_dev_ptmx = xyes || test x$ac_cv_func_posix_openpt = xyes ) && \
> -if test x$ac_cv_have_dev_ptmx = xyes && \
> +if test x$ac_cv_have_dev_ptmx = xyes -o x$ac_cv_func_posix_openpt = xyes && \
Messages sorted by:
Reverse Date,
Date,
Thread,
Author