dect
/
asterisk
Archived
13
0
Fork 0

Honor the --with-${library}=path for AST_EXT_TOOL_CHECK

(closes issue #16991)
Reported by: pprindeville
Patches: 
      with_netsnmp.patch.txt uploaded by twilson (license 396)
Tested by: twilson

Review: https://reviewboard.asterisk.org/r/739/


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@272254 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
twilson 2010-06-23 20:53:48 +00:00
parent 07326210de
commit eff48b811b
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ AC_DEFUN([AST_EXT_TOOL_CHECK],
[
if test "x${PBX_$1}" != "x1" -a "${USE_$1}" != "no"; then
PBX_$1=0
AC_CHECK_TOOL(CONFIG_$1, $2, No)
AC_PATH_TOOL(CONFIG_$1, $2, No, [${$1_DIR}/bin:$PATH])
if test ! "x${CONFIG_$1}" = xNo; then
if test x"$3" = x ; then A=--cflags ; else A="$3" ; fi
$1_INCLUDE=$(${CONFIG_$1} $A)