zsh-workers
 help / color / mirror / code / Atom feed
* Conflict with Jun T's texi2any patch
@ 2015-05-22 17:05 Bart Schaefer
  2015-05-22 21:27 ` Peter Stephenson
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Bart Schaefer @ 2015-05-22 17:05 UTC (permalink / raw)
  To: zsh-workers

This must be something I had left unposted -- I added "makeinfo" fallbacks:

++<<<<<<< HEAD
 +AC_CHECK_PROGS([TEXI2PDF], [texi2pdf], [makeinfo --pdf])
 +AC_CHECK_PROGS([TEXI2HTML], [texi2html], [makeinfo --html])
++=======
+ AC_CHECK_PROGS([TEXI2PDF], [texi2pdf], [])
+ AC_CHECK_PROGS([TEXI2HTML], [texi2any texi2html], [: texi2html])
+ 
+ if test x"$TEXI2HTML" = xtexi2any; then
+   TEXI2HTML='texi2any -c TEXI2HTML=1'
+ fi
+ 
++>>>>>>> master


I presume texi2any can replace texi2pdf as well, if that's not found?


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Conflict with Jun T's texi2any patch
  2015-05-22 17:05 Conflict with Jun T's texi2any patch Bart Schaefer
@ 2015-05-22 21:27 ` Peter Stephenson
  2015-05-23 10:13 ` Daniel Shahaf
  2015-05-23 16:47 ` Jun T.
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Stephenson @ 2015-05-22 21:27 UTC (permalink / raw)
  To: zsh-workers

On Fri, 22 May 2015 10:05:46 -0700
Bart Schaefer <schaefer@brasslantern.com> wrote:
> I presume texi2any can replace texi2pdf as well, if that's not found?

The limited research I can be bothered with suggests texi2any, while it
does have a PDF mode, actually depends on texi2dvi/texi2pdf in texinfo 5.

pws


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Conflict with Jun T's texi2any patch
  2015-05-22 17:05 Conflict with Jun T's texi2any patch Bart Schaefer
  2015-05-22 21:27 ` Peter Stephenson
@ 2015-05-23 10:13 ` Daniel Shahaf
  2015-05-23 16:47 ` Jun T.
  2 siblings, 0 replies; 4+ messages in thread
From: Daniel Shahaf @ 2015-05-23 10:13 UTC (permalink / raw)
  To: zsh-workers

[ This is about git conflicts, not about texinfo. ]

Bart Schaefer wrote on Fri, May 22, 2015 at 10:05:46 -0700:
> This must be something I had left unposted -- I added "makeinfo" fallbacks:
> 
> ++<<<<<<< HEAD
>  +AC_CHECK_PROGS([TEXI2PDF], [texi2pdf], [makeinfo --pdf])
>  +AC_CHECK_PROGS([TEXI2HTML], [texi2html], [makeinfo --html])
> ++=======
> + AC_CHECK_PROGS([TEXI2PDF], [texi2pdf], [])
> + AC_CHECK_PROGS([TEXI2HTML], [texi2any texi2html], [: texi2html])
> + 
> + if test x"$TEXI2HTML" = xtexi2any; then
> +   TEXI2HTML='texi2any -c TEXI2HTML=1'
> + fi
> + 
> ++>>>>>>> master
> 

I find conflicts easier to resolve when 'git config --global
merge.conflictstyle=diff3' is set: <<< foo ||| bar === baz >>> can then
be resolved by applying to foo the changes that make bar into baz, which
is usually an almost mechanical change.  The two-side form quoted above
lacks bar.

Here's a comparison of the two-sided and three-sided forms:
https://subversion.apache.org/docs/release-notes/1.9#three-way-conflict-markers


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Conflict with Jun T's texi2any patch
  2015-05-22 17:05 Conflict with Jun T's texi2any patch Bart Schaefer
  2015-05-22 21:27 ` Peter Stephenson
  2015-05-23 10:13 ` Daniel Shahaf
@ 2015-05-23 16:47 ` Jun T.
  2 siblings, 0 replies; 4+ messages in thread
From: Jun T. @ 2015-05-23 16:47 UTC (permalink / raw)
  To: zsh-workers


2015/05/23 02:05, Bart Schaefer <schaefer@brasslantern.com> wrote:

> +AC_CHECK_PROGS([TEXI2PDF], [texi2pdf], [makeinfo --pdf])

> I presume texi2any can replace texi2pdf as well, if that's not found?

With texinfo-4.13, makeinfo does not support the option --pdf.

With texinfo-5.2, makeinfo (= texi2any) supports --pdf, but if I try

$ texi2any --pdf zsh.texi

then it fails as

zsh.texi:70: @menu seen before first @node

This is strange, because, as Peter wrote, texi2any can't produce pdf
by itself but calls 'texi2dvi --pdf'. Or at least the documentation
of texi2any says so.
('texi2pdf zsh.texi' or 'texi2dvi --pdf zsh.texi' works, of course).

Anyway I think if there is texi2any then there should be texi2dvi and
texi2pdf, unless a user (or a package manager) installed texinfo in a
very strange way.

texi2pdf (texinfo 4 or 5) is just a wrapper script for 'texi2dvi --pdf'.
If $(TEXI2PDF) is empty, then Doc/Makefile.in calls 'texi2dvi --pdf'
instead. So I think if texi2pdf is not found then leaving $(TEXI2PDF)
empty is OK (if texi2dvi does not exist then 'texi2any --pdf' will fail
even if the above problem has been fixed).

Or is it better to check the existence of texi2dvi in configure?


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-05-23 16:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-22 17:05 Conflict with Jun T's texi2any patch Bart Schaefer
2015-05-22 21:27 ` Peter Stephenson
2015-05-23 10:13 ` Daniel Shahaf
2015-05-23 16:47 ` Jun T.

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