diff options
author | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2009-02-24 13:37:24 +0100 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2009-02-24 13:38:53 +0100 |
commit | 27f19cf92f159b68cbacfb7914a5628e03103e2a (patch) | |
tree | cb207b0eda3b6a9d090d82fff2e5c3e653a94a10 | |
parent | c794b40c49ab93711f72f140f3a621206d4448d8 (diff) | |
download | gst-plugins-bad-27f19cf92f159b68cbacfb7914a5628e03103e2a.tar.gz gst-plugins-bad-27f19cf92f159b68cbacfb7914a5628e03103e2a.tar.bz2 gst-plugins-bad-27f19cf92f159b68cbacfb7914a5628e03103e2a.zip |
dts: Prefer libdca over libdts as it's the successor
-rw-r--r-- | configure.ac | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 46f097a8..593eda93 100644 --- a/configure.ac +++ b/configure.ac @@ -568,11 +568,11 @@ dnl *** DTS *** translit(dnm, m, l) AM_CONDITIONAL(USE_DTS, true) AG_GST_CHECK_FEATURE(DTS, [dts library], dtsdec, [ HAVE_DTS="yes" - AG_GST_CHECK_LIBHEADER(DTS, dts_pic, dts_init, -lm, dts.h, - DTS_LIBS="-ldts_pic -lm", HAVE_DTS="no") + AG_GST_CHECK_LIBHEADER(DTS, dca, dca_init, -lm, dts.h, + DTS_LIBS="-ldca -lm", HAVE_DTS="no") if test $HAVE_DTS = "no"; then - AG_GST_CHECK_LIBHEADER(DTS, dca, dca_init, -lm, dts.h, - DTS_LIBS="-ldca -lm") + AG_GST_CHECK_LIBHEADER(DTS, dts_pic, dts_init, -lm, dts.h, + DTS_LIBS="-ldts_pic -lm") fi AC_SUBST(DTS_LIBS) ]) |