aboutsummaryrefslogtreecommitdiffstats
path: root/acinclude.m4
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-08-14 00:08:35 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-08-14 00:08:35 +0000
commit122c31952a9647bfef4df0ed8027aaa85075b54f (patch)
tree69a9b4ab936a14798e44ff7b4146ecd4333b58fc /acinclude.m4
parenta368509257390246bb3e6ec6aee7e3dbdcdc4826 (diff)
support ./configure --silent
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@39615 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m418
1 files changed, 9 insertions, 9 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index dde2f5de8..181773697 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -56,10 +56,10 @@ if test "${USE_$1}" != "no"; then
if test "x${$1_HEADER_FOUND}" = "x0" ; then
if test ! -z "${$1_MANDATORY}" ;
then
- echo " ***"
- echo " *** It appears that you do not have the $2 development package installed."
- echo " *** Please install it to include ${$1_DESCRIP} support, or re-run configure"
- echo " *** without explicitly specifying --with-${$1_OPTION}"
+ AC_MSG_NOTICE( ***)
+ AC_MSG_NOTICE( *** It appears that you do not have the $2 development package installed.)
+ AC_MSG_NOTICE( *** Please install it to include ${$1_DESCRIP} support, or re-run configure)
+ AC_MSG_NOTICE( *** without explicitly specifying --with-${$1_OPTION})
exit 1
fi
$1_LIB=""
@@ -71,10 +71,10 @@ if test "${USE_$1}" != "no"; then
fi
elif test ! -z "${$1_MANDATORY}";
then
- echo "***"
- echo "*** The ${$1_DESCRIP} installation on this system appears to be broken."
- echo "*** Either correct the installation, or run configure"
- echo "*** without explicitly specifying --with-${$1_OPTION}"
+ AC_MSG_NOTICE(***)
+ AC_MSG_NOTICE(*** The ${$1_DESCRIP} installation on this system appears to be broken.)
+ AC_MSG_NOTICE(*** Either correct the installation, or run configure)
+ AC_MSG_NOTICE(*** without explicitly specifying --with-${$1_OPTION})
exit 1
fi
fi
@@ -93,7 +93,7 @@ AC_DEFUN(
done ;
) ;
if test "x$GNU_MAKE" = "xNot Found" ; then
- echo " *** Please install GNU make. It is required to build Asterisk!"
+ AC_MSG_ERROR( *** Please install GNU make. It is required to build Asterisk!)
exit 1
fi
AC_SUBST([GNU_MAKE])