aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSylvain Munaut <tnt@246tNt.com>2010-11-13 00:19:09 +0100
committerSylvain Munaut <tnt@246tNt.com>2010-11-13 00:19:09 +0100
commit3c9c2fb6eeb04dc6f6e4da43aebe9ac920f1e8f3 (patch)
tree82e0da704d1f94f50c336e68cf6cf945560437c7
parentf624d18067a34815ebb2e6332bac6aaa2385a5de (diff)
Fix error in configure.ac preventing compiling without opencore-amrnb
Obvious typo ... Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index a8244c2..1d531df 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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