diff options
author | Peter Simons <simons@cryp.to> | 2009-08-24 14:45:49 +0200 |
---|---|---|
committer | Peter Simons <simons@cryp.to> | 2009-08-24 15:07:38 +0200 |
commit | e9bdb71fc2c3629bc808e94b631d4cee8850c5a5 (patch) | |
tree | fddee7deaaa06847bc781609f3b5598fd64baf5d /m4/acltx_prog_psresize.m4 | |
parent | 628fb8f0b631f5ddc624df7f4d8f033c64520f2b (diff) | |
download | autoconf-archive-e9bdb71fc2c3629bc808e94b631d4cee8850c5a5.tar.gz |
Dropped obsolete macros from the repository.
These macros have been replaced by newer versions and are no longer required.
Where applicable, the newer versions feature an AU_ALIAS() forwarder that
redirects invocations of the obsolete macro to the current one.
Diffstat (limited to 'm4/acltx_prog_psresize.m4')
-rw-r--r-- | m4/acltx_prog_psresize.m4 | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/m4/acltx_prog_psresize.m4 b/m4/acltx_prog_psresize.m4 deleted file mode 100644 index c13d584..0000000 --- a/m4/acltx_prog_psresize.m4 +++ /dev/null @@ -1,42 +0,0 @@ -# =========================================================================== -# http://www.nongnu.org/autoconf-archive/acltx_prog_psresize.html -# =========================================================================== -# -# OBSOLETE MACRO -# -# Renamed to AX_LATEX_PROG_PSRESIZE -# -# SYNOPSIS -# -# ACLTX_PROG_PSRESIZE([ACTION-IF-NOT-FOUND]) -# -# DESCRIPTION -# -# This macro find a psresize application and set the variable psresize to -# the name of the application or to no if not found if ACTION-IF-NOT-FOUND -# is not specified, configure fail when then application is not found. -# -# LICENSE -# -# Copyright (c) 2008 Boretti Mathieu <boretti@eig.unige.ch> -# -# 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 <http://www.gnu.org/licenses/>. - -AC_DEFUN([ACLTX_PROG_PSRESIZE],[ -AC_CHECK_PROGS(psresize,[psresize],no) -if test $psresize = "no" ; -then - ifelse($#,0,[AC_MSG_ERROR([Unable to find the psresize application])], - $1) -fi]) |