Fix error in configure.ac preventing compiling without opencore-amrnb

Obvious typo ...

Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
This commit is contained in:
Sylvain Munaut 2010-11-13 00:19:09 +01:00
parent f624d18067
commit 3c9c2fb6ee
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ PKG_CHECK_MODULES(LIBOSMOCODEC, libosmocodec >= 0.1.25)
# opencore-amrnb for AMR and EFR decoding
found_opencore_amrnb=yes
PKG_CHECK_MODULES(OPENCORE_AMRNB, opencore-amrnb >= 0.1.0, , found_libgsm=no)
PKG_CHECK_MODULES(OPENCORE_AMRNB, opencore-amrnb >= 0.1.0, , found_opencore_amrnb=no)
if test "$found_opencore_amrnb" = yes; then
AC_DEFINE(HAVE_OPENCORE_AMRNB, 1, [Define to 1 if OpenCore AMR-NB library is available])
fi