diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2008-01-15 17:01:37 +0100 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2008-01-15 17:01:37 +0100 |
commit | c5cfb81f1de09183e045568e7b72e47d43733b36 (patch) | |
tree | 39f273da3bf01335e8f8acd35c54c47570e73e45 | |
parent | 07b372828b7b4b1337331ff16ebdab1482609e0a (diff) | |
download | xine-lib-c5cfb81f1de09183e045568e7b72e47d43733b36.tar.gz xine-lib-c5cfb81f1de09183e045568e7b72e47d43733b36.tar.bz2 |
Fix test for external dts that caused internal copy to be used instead.
-rw-r--r-- | m4/decoders.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/decoders.m4 b/m4/decoders.m4 index 3552ba6a2..0ab38af29 100644 --- a/m4/decoders.m4 +++ b/m4/decoders.m4 @@ -173,7 +173,7 @@ use internal ffmpeg. else AC_MSG_RESULT([Using included libdts support]) fi - if test x"$have_external_libdts" != x"yes"; then + if test x"$have_external_dts" != x"yes"; then LIBDTS_CFLAGS='-I$(top_srcdir)/contrib/libdca/include' LIBDTS_DEPS='$(top_builddir)/contrib/libdca/libdca.la' LIBDTS_LIBS='$(top_builddir)/contrib/libdca/libdca.la' |