Download M4 Source Macro Index Page

ac_prog_gunzip

Synopsis

AC_PROG_GUNZIP

Description

This macro test if gunzip is installed. If gunzip is installed, it set $gunzip to the right value

Author

Mathieu Boretti <boretti@bss-network.com>

Last Modified

2005-01-21

M4 Source Code

AC_DEFUN([AC_PROG_GUNZIP],[
AC_CHECK_PROGS(gunzip,[gunzip],no)
export gunzip;
if test $gunzip = "no" ;
then
        AC_MSG_ERROR([Unable to find the gunzip application]);
fi
AC_SUBST(gunzip)
])