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

[PATCH] zsh documentation build broken with yodl 4: Missing version check in configure.ac



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@xxxxxxxxxxxxxxx  (Mail)
 X   See http://www.nonhtmlmail.org/campaign.html | abe@xxxxxxxxx (Mail+Jabber)
/ \  I love long mails: http://email.is-not-s.ms/ | http://abe.noone.org/ (Web)



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