enblend 4.2 build error without latex
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Enblend |
Fix Committed
|
Medium
|
Christoph Spiel |
Bug Description
enblend 4.2 has a hard dependency on (pdf)latex:
checking for perl module Time::Zone... ok
checking for latex... no
checking for elatex... no
checking for lambda... no
../configure: line 8623: WARNING:: command not found
checking for pdflatex... ../configure: line 8655: WARNING:: command not found
no
checking for latex... no
checking for elatex... no
checking for lambda... no
configure: error: Unable to find a LaTeX application
Afaict this code in configure.ac fails to work as expected:
-------
can_build_doc=yes
AC_PATH_
AC_PATH_
if test "$latex" != 'no'
then
AC_LATEX_
-------
AC_PATH_PROGS would set $LATEX ("upper case") on success and can_build_doc=no otherwise but the code checks "$latex" != 'no' instead of '"$can_
cu Andreas
Should be fixed in rev 78a09bc743b7, which will be backported to 4.2.1.
Given the complexity and sheer mass of checks for the documentation,
I expect more bugs to show up time after time.