Skip to content
Snippets Groups Projects
Commit 74aecc64 authored by Russell Bryant's avatar Russell Bryant
Browse files

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
parent d19f767c
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment