hugin-devs team mailing list archive
-
hugin-devs team
-
Mailing list archive
-
Message #05920
[Bug 1468524] [NEW] convert -3 error building docs
Public bug reported:
This code in configure.ac tries to substitute 'convert' for 'tiff2ps' if
tiff2ps isn't found:
AC_PATH_PROG(TIFF2PS, tiff2ps, false)
if test "$TIFF2PS" = false; then
if test "$CONVERT" != false; then
AC_MSG_WARN(cannot find tiff2ps; will substitute convert)
TIFF2PS="$CONVERT"
TIFF2PS_FLAGS=""
else
AC_MSG_WARN(cannot find tiff2ps; will not be able to build PostScript documentation)
can_build_doc=no
missing_for_doc="$missing_for_doc tiff2ps"
fi
fi
..but then this fails calling `convert -3` which isn't a valid convert
command.
Other than that, once I have all the right dependencies installed, I can
now successfully build html, dvi, ps and pdf docs - It's a long time
since this worked on fedora!
** Affects: enblend
Importance: Undecided
Status: New
--
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Enblend.
https://bugs.launchpad.net/bugs/1468524
Title:
convert -3 error building docs
Status in Enblend:
New
Bug description:
This code in configure.ac tries to substitute 'convert' for 'tiff2ps'
if tiff2ps isn't found:
AC_PATH_PROG(TIFF2PS, tiff2ps, false)
if test "$TIFF2PS" = false; then
if test "$CONVERT" != false; then
AC_MSG_WARN(cannot find tiff2ps; will substitute convert)
TIFF2PS="$CONVERT"
TIFF2PS_FLAGS=""
else
AC_MSG_WARN(cannot find tiff2ps; will not be able to build PostScript documentation)
can_build_doc=no
missing_for_doc="$missing_for_doc tiff2ps"
fi
fi
..but then this fails calling `convert -3` which isn't a valid convert
command.
Other than that, once I have all the right dependencies installed, I
can now successfully build html, dvi, ps and pdf docs - It's a long
time since this worked on fedora!
To manage notifications about this bug go to:
https://bugs.launchpad.net/enblend/+bug/1468524/+subscriptions
Follow ups
References