summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-08-18 21:41:35 +0200
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-08-18 21:41:35 +0200
commit8de3d55f126e130d2b1d451c99db9a8a9b81edee (patch)
tree7ccc75ee79a251d4ec1b921c28aa89c466703bb1
parent5c527755efc9a98116451fe52953d11f3ce4d208 (diff)
aac plugin compile fix
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 894a71bf..e6d97f50 100644
--- a/configure.ac
+++ b/configure.ac
@@ -367,7 +367,7 @@ fi
if test "x$enable_aac" != "xno" ; then
AC_CHECK_LIB([faad], [main], [HAVE_FAAD=1])
AC_CHECK_LIB([mp4v2], [main], [HAVE_MP4V2=1])
- if test ${HAVE_FAAD} && test $(HAVE_MP4V2) ; then
+ if test ${HAVE_FAAD} && test ${HAVE_MP4V2} ; then
FAAD2_LIBS="-lfaad -lmp4v2"
AC_SUBST(FAAD2_LIBS)
HAVE_AAC=yes