# =========================================================================== # http://autoconf-archive.cryp.to/acltx_dvips_t_letter_landscape.html # =========================================================================== # # SYNOPSIS # # ACLTX_DVIPS_T_LETTER_LANDSCAPE # # DESCRIPTION # # Check if dvips accepts "-t letter -t landscape". # # LICENSE # # Copyright (c) 2008 Boretti Mathieu # # This library is free software; you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation; either version 2.1 of the License, or (at # your option) any later version. # # This library is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser # General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License # along with this library. If not, see . AC_DEFUN([ACLTX_DVIPS_T_LETTER_LANDSCAPE],[ AC_REQUIRE([ACLTX_DVIPS_T_LETTER]) ACLTX_DVIPS_T(letter,dvips_t_letter_landscape,on) if test $dvips_t_letter_landscape = "no"; then AC_MSG_ERROR([Unable to find the -t letter -t landscape option in dvips]) fi ])