Sfoglia il codice sorgente

* Use kpsewhich to find a4.sty and a4wide.sty, as suggested by

Alexis Ballier.
tags/v0.99.beta14
Sam Hocevar sam 17 anni fa
parent
commit
acca03e820
1 ha cambiato i file con 11 aggiunte e 10 eliminazioni
  1. +11
    -10
      configure.ac

+ 11
- 10
configure.ac Vedi File

@@ -345,23 +345,24 @@ if test "${enable_doc}" != "no"; then
if test "${DOXYGEN}" != "no"; then if test "${DOXYGEN}" != "no"; then
# Build LaTeX documentation? # Build LaTeX documentation?
AC_PATH_PROG(LATEX, pdflatex, no) AC_PATH_PROG(LATEX, pdflatex, no)
AC_PATH_PROG(KPSEWHICH, kpsewhich, no)
AC_PATH_PROG(DVIPS, dvips, no) AC_PATH_PROG(DVIPS, dvips, no)
if test "${DVIPS}" = "no"; then if test "${DVIPS}" = "no" -o "${KPSEWHICH}" = "no"; then
LATEX="no" LATEX="no"
fi fi
AC_MSG_CHECKING(for a4.sty) if test "${LATEX}" != "no"; then
if test "$(find /usr/share/texmf* -name 'a4.sty')" != ""; then AC_MSG_CHECKING(for a4.sty and a4wide.sty)
AC_MSG_RESULT(yes) if "${KPSEWHICH}" a4.sty >/dev/null 2>&1; then
AC_MSG_CHECKING(for a4wide.sty) if "${KPSEWHICH}" a4wide.sty >/dev/null 2>&1; then
if test "$(find /usr/share/texmf* -name 'a4wide.sty')" != ""; then AC_MSG_RESULT(yes)
AC_MSG_RESULT(yes) else
LATEX="no"
AC_MSG_RESULT(no)
fi
else else
LATEX="no" LATEX="no"
AC_MSG_RESULT(no) AC_MSG_RESULT(no)
fi fi
else
LATEX="no"
AC_MSG_RESULT(no)
fi fi
fi fi
fi fi


||||||
x
 
000:0
Caricamento…
Annulla
Salva