ac_prog_gzip.m4 180 B

123456789
  1. AC_DEFUN([AC_PROG_GZIP],[
  2. AC_CHECK_PROGS(gzip,[gzip],no)
  3. export gzip;
  4. if test $gzip = "no" ;
  5. then
  6. AC_MSG_ERROR([Unable to find the gzip application]);
  7. fi
  8. AC_SUBST(gzip)
  9. ])