Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: zsh/re2 : avoid until further notice
- X-seq: zsh-workers 39290
- From: Daniel Shahaf <d.s@xxxxxxxxxxxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: Re: zsh/re2 : avoid until further notice
- Date: Mon, 12 Sep 2016 03:50:25 +0000
- Dkim-signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= daniel.shahaf.name; h=content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-sasl-enc:x-sasl-enc; s=mesmtp; bh=wDRqxSZvD93u9MYv oHBGLqphla0=; b=rAaM0oAay6Qhck0y8kUgnmeSCKO0UwkX3BT+fndMZIZXSXEl 9PaJHOTi/j8x5rokUqX3MmMVXTHF8PAW3a+sZaFiFF76aFzBiZMn5XDr2W7Im2cg ffiwj3InvPGcvuqPC2Bh5B49qT1HI/CcG0Oph1t2tUGbW19WJRrX6mqtWAM=
- Dkim-signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-sasl-enc:x-sasl-enc; s=smtpout; bh=wDRqxSZvD93u9MY voHBGLqphla0=; b=qlciLyTpxQ069XjDj/FxyimOqiDNMDnlRaXl6eETXRBMndo opO1YcjGB+7AuOfQwptw4QXqJBzi8iz6EXaG/kMRcw1K/NH273Ax7gFgdz8ycvm6 ilPXlvUK9o7B6iay2fppfvkIwxNie9sDJKNbzRIXAYK+h08ufcCh0iXBpx8c=
- In-reply-to: <20160911192351.GA28725@tower.spodhuis.org>
- 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: <20160908041556.GA8401@breadbox.private.spodhuis.org> <20160908144203.GA28545@fujitsu.shahaf.local2> <20160908204737.GA12164@breadbox.private.spodhuis.org> <20160908211643.GA4432@fujitsu.shahaf.local2> <20160909005557.GB12371@breadbox.private.spodhuis.org> <20160909045739.GA6623@fujitsu.shahaf.local2> <20160910010456.GA85981@tower.spodhuis.org> <20160910190924.GB4045@fujitsu.shahaf.local2> <20160911192351.GA28725@tower.spodhuis.org>
Phil Pennock wrote on Sun, Sep 11, 2016 at 19:23:51 +0000:
> With the AC_TRY_RUN(PROG,=yes,=no,=unknown), when the program crashed,
> the `./configure` run reported the status of that test as "unknown" and
> continued on. Yes, this was building locally, no cross-compiling.
A comma is missing after the first "yes":
+ AC_TRY_RUN([
⋮
+}],
+ zsh_cv_cre2_runtime_broken=no,
+ zsh_cv_cre2_runtime_broken=yes
+ zsh_cv_cre2_runtime_broken=yes))
(So the "=no =yes =unknown" took the 'unknown' for part if the if-false
action, rather than the if-cross action.)
> Also, I don't know if any of the ac logic should be in aclocal.m4,
> aczsh.m4, should stay in configure.ac or something else, and how this
> should be decided.
I'd vote for configure.ac. The other two seem to be about autoconf
library functions and about system tests (as opposed to dependency
libraries).
> If anyone has tried the zsh-workers 39249 patch, success/failure reports
> even on the basic functionality would be nice. :)
I haven't, sorry :(
FWIW on my OS (debian) I see only a package for re2, not for cre2.
Cheers,
Daniel
Messages sorted by:
Reverse Date,
Date,
Thread,
Author