zsh-workers
 help / color / mirror / code / Atom feed
* [PATCH] zsh documentation build broken with yodl 4: Missing version check in configure.ac
@ 2017-06-22  1:46 Axel Beckert
  0 siblings, 0 replies; only message in thread
From: Axel Beckert @ 2017-06-22  1:46 UTC (permalink / raw)
  To: zsh-workers

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)


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2017-06-22  1:55 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-22  1:46 [PATCH] zsh documentation build broken with yodl 4: Missing version check in configure.ac Axel Beckert

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).