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

Re: zsh/re2 : avoid until further notice



On 2016-09-12 at 03:50 +0000, Daniel Shahaf wrote:
> 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))

*facepalm*

Thank you.

diff --git a/configure.ac b/configure.ac
index c000d6a..f055583 100644
--- a/configure.ac
+++ b/configure.ac
@@ -718,8 +718,8 @@ int main(int argc, char **argv) {
        return 0;
 }],
   zsh_cv_cre2_runtime_broken=no,
-  zsh_cv_cre2_runtime_broken=yes
-  zsh_cv_cre2_runtime_broken=yes))
+  zsh_cv_cre2_runtime_broken=yes,
+  zsh_cv_cre2_runtime_broken=unknown))
   if test x$zsh_cv_cre2_runtime_broken = xyes; then
     AC_MSG_ERROR([cre2 library hard-unusable, rebuild with same compiler as for RE2])
   fi



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