AC_LATEX_PACKAGE_FONTENC
,
Mathieu Boretti <boretti@eig.unige.ch>
GPLWithACException
This program is free software; you can
redistribute it and/or modify it under the terms of the GNU General Public License
as published by the Free Software Foundation. As a special exception, the respective
Autoconf Macro's copyright owner gives unlimited permission to copy, distribute and modify
the configure scripts that are the output of Autoconf when processing the Macro. You
need not follow the terms of the
GNU General Public License when using or distributing such scripts
cryp.to ac-archive's Obsoleted (obsoleted)
This macro test if \usepackage[T1]{fontenc} works. If yes it set
$fontenc="T1" else if \usepackage[OT1]{fontenc} works, set
$fontenc="OT1" else ERROR
define(_AC_LATEX_PACKAGE_FONTENC_INTERNE,[
changequote(*, !)dnl
\documentclass{book}
\usepackage[$1]{fontenc}
\begin{document}
\end{document}
changequote([, ])dnl
])
AC_DEFUN([AC_LATEX_PACKAGE_FONTENC],[
AC_LATEX_CLASS_BOOK
AC_CACHE_CHECK([for fontenc],[ac_cv_latex_package_fontenc_opt],[
_AC_LATEX_TEST([_AC_LATEX_PACKAGE_FONTENC_INTERNE(T1)],[ac_cv_latex_package_fontenc_opt])
if test $ac_cv_latex_package_fontenc_opt = "yes" ;
then
ac_cv_latex_package_fontenc_opt="T1"; export ac_cv_latex_package_fontenc_opt;
else
_AC_LATEX_TEST([_AC_LATEX_PACKAGE_FONTENC_INTERNE(OT1)],[ac_cv_latex_package_fontenc_opt])
if test $ac_cv_latex_package_fontenc_opt = "yes" ;
then
ac_cv_latex_package_fontenc_opt="OT1"; export ac_cv_latex_package_fontenc_opt;
fi
fi
])
if test $ac_cv_latex_package_fontenc_opt = "no" ;
then
AC_MSG_ERROR([Unable to use fontenc with T1 nor OT1])
fi
fontenc=$ac_cv_latex_package_fontenc_opt ; export fontenc ;
AC_SUBST(fontenc)
])