zsh-workers
 help / color / mirror / code / Atom feed
From: Axel Beckert <abe@deuxchevaux.org>
To: zsh-workers@zsh.org
Subject: [PATCH] zsh documentation build broken with yodl 4: Missing version check in configure.ac
Date: Thu, 22 Jun 2017 03:46:52 +0200	[thread overview]
Message-ID: <20170622014651.GM4321@sym.noone.org> (raw)

Hi,

generating the texi based zsh documentation (e.g. PDF) hangs
infinitely when building with yodl 4.01.00 due to the yodl version
check in configure.ac only supports versions 2 and 3:

    626 YODL_OPTIONS=''
    627 if test "x$ac_cv_prog_YODL" = xyodl; then
    628     case `yodl --version` in
    629       *"version 2."*) YODL_OPTIONS='-k' ;;
    630       *"version 3."*) YODL_OPTIONS='-k -L' ;;
    631     esac
    632 fi
    633 AC_SUBST(YODL_OPTIONS)

The following fixes this:

--- a/configure.ac
+++ b/configure.ac
@@ -628,6 +628,7 @@
     case `yodl --version` in
       *"version 2."*) YODL_OPTIONS='-k' ;;
       *"version 3."*) YODL_OPTIONS='-k -L' ;;
+      *"version 4."*) YODL_OPTIONS='-k -L' ;;
     esac
 fi
 AC_SUBST(YODL_OPTIONS)

		Kind regards, Axel
-- 
/~\  Plain Text Ribbon Campaign                   | Axel Beckert
\ /  Say No to HTML in E-Mail and News            | abe@deuxchevaux.org  (Mail)
 X   See http://www.nonhtmlmail.org/campaign.html | abe@noone.org (Mail+Jabber)
/ \  I love long mails: http://email.is-not-s.ms/ | http://abe.noone.org/ (Web)


                 reply	other threads:[~2017-06-22  1:55 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170622014651.GM4321@sym.noone.org \
    --to=abe@deuxchevaux.org \
    --cc=zsh-workers@zsh.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).