freeswitch/libs/libblade/build/config/ac_prog_wget.m4

10 lines
180 B
Plaintext

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