Re #1586: Removed configure warning when using --with-silk option

git-svn-id: https://svn.pjsip.org/repos/pjproject/trunk@4271 74dad513-b988-da41-8d7b-12977e46ad98
This commit is contained in:
Sauw Ming 2012-10-01 11:08:08 +00:00
parent 3ee340a3a9
commit ec02c0850b
2 changed files with 3 additions and 1 deletions

View File

@ -7197,7 +7197,7 @@ $as_echo "OpenCORE AMR-NB library found, AMR-NB support enabled" >&6; }
else
ac_no_opencore_amrnb=1
$as_echo "#define PJMEDIA_HAS_OPENCORE_AMRNB444_CODEC 0" >>confdefs.h
$as_echo "#define PJMEDIA_HAS_OPENCORE_AMRNB_CODEC 0" >>confdefs.h
fi
@ -7236,6 +7236,7 @@ else
$as_echo "checking for SILK installations.." >&6; }
if test "x$with_silk" != "xno" -a "x$with_silk" != "x"; then
CFLAGS="$CFLAGS -I$with_silk/interface"
CPPFLAGS="$CPPFLAGS -I$with_silk/interface"
LDFLAGS="$LDFLAGS -L$with_silk"
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: Using SILK prefix... $with_silk" >&5
$as_echo "Using SILK prefix... $with_silk" >&6; }

View File

@ -1396,6 +1396,7 @@ AC_ARG_ENABLE(silk,
AC_MSG_RESULT([checking for SILK installations..])
if test "x$with_silk" != "xno" -a "x$with_silk" != "x"; then
CFLAGS="$CFLAGS -I$with_silk/interface"
CPPFLAGS="$CPPFLAGS -I$with_silk/interface"
LDFLAGS="$LDFLAGS -L$with_silk"
AC_MSG_RESULT([Using SILK prefix... $with_silk])
fi