1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-04-03 11:50:29 +00:00

10 lines
180 B
Plaintext
Raw Normal View History

2016-11-23 13:23:33 -06:00
AC_DEFUN([AC_PROG_GZIP],[
AC_CHECK_PROGS(gzip,[gzip],no)
export gzip;
if test $gzip = "no" ;
then
AC_MSG_ERROR([Unable to find the gzip application]);
fi
AC_SUBST(gzip)
])