diff options
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | src/liba52/xine_a52_decoder.c | 6 |
2 files changed, 1 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac index f18288691..9063e9415 100644 --- a/configure.ac +++ b/configure.ac @@ -1302,7 +1302,7 @@ if test "x$enable_a52dec" = "xno"; then AC_MSG_RESULT([a52dec support disabled]) elif test "x$external_a52dec" = "xyes"; then have_a52="yes" - AC_CHECK_HEADERS([a52dec/a52.h a52dec/a52_internal.h],, have_a52="no", + AC_CHECK_HEADERS([a52dec/a52.h],, have_a52="no", [ #ifdef HAVE_SYS_TYPES_H # include <sys/types.h> diff --git a/src/liba52/xine_a52_decoder.c b/src/liba52/xine_a52_decoder.c index 9e590f77d..b4b628c81 100644 --- a/src/liba52/xine_a52_decoder.c +++ b/src/liba52/xine_a52_decoder.c @@ -53,12 +53,6 @@ # include "a52.h" #endif -#ifdef HAVE_A52DEC_A52_INTERNAL_H -# include <a52dec/a52_internal.h> -#else -# include "a52_internal.h" -#endif - #include "buffer.h" #include "xineutils.h" |