forked from Mirrors/freeswitch
8747f15aee
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2951 d0543943-73ff-0310-b7d9-9358b9ac24b2
10 lines
180 B
Plaintext
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)
|
|
])
|