| Download M4 Source | Macro Index Page |
AC_PROG_GUNZIP
This macro test if gunzip is installed. If gunzip is installed, it set $gunzip to the right value
Mathieu Boretti <boretti@bss-network.com>
2005-01-21
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)
])