only define HAVE_SOMELIB if somelib's header file was found as well

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@22703 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant 2006-04-27 00:10:56 +00:00
parent d19f767c3c
commit 74aecc640b
1 changed files with 2 additions and 2 deletions

View File

@ -20,8 +20,7 @@ esac
PBX_LIB$1=0
if test "${USE_$1}" != "no"; then
AC_CHECK_LIB([$1], [$2], AC_DEFINE_UNQUOTED([HAVE_$4], 1,
[Define to indicate the $5 library]), [], -L${$1_DIR}/lib $6)
AC_CHECK_LIB([$1], [$2], [], [], -L${$1_DIR}/lib $6)
if test "${ac_cv_lib_$1_$2}" = "yes"; then
$1_LIB="-l$1 $6"
@ -51,6 +50,7 @@ if test "${USE_$1}" != "no"; then
PBX_LIB$1=0
else
PBX_LIB$1=1
AC_DEFINE_UNQUOTED([HAVE_$4], 1, [Define to indicate the $5 library])
fi
elif test ! -z "${$1_MANDATORY}";
then