diff options
author | Alexis Ballier <aballier@gentoo.org> | 2013-05-17 13:50:02 -0400 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2013-05-17 13:50:02 -0400 |
commit | af362f9c6bcf15c12f5dec6d0c84c362d1d4d538 (patch) | |
tree | 2cf140d308fdb9de6c073ac4cd836e6fc2a9ca38 /configure.in | |
parent | a760994787d7316a25d85e1883ac494520108e33 (diff) |
Drop support for old ffmpeg header layout.
xbmc requires a ffmpeg version that has the new layout.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 10fae0d1a8..2d65a559b5 100644 --- a/configure.in +++ b/configure.in @@ -1620,8 +1620,7 @@ if test "$use_external_ffmpeg" = "yes"; then # Possible places the ffmpeg headers may be AC_CHECK_HEADERS([libavcodec/avcodec.h libavfilter/avfilter.h libavformat/avformat.h libavutil/avutil.h libpostproc/postprocess.h libswscale/swscale.h],, - [AC_CHECK_HEADERS([ffmpeg/avcodec.h ffmpeg/avfilter.h ffmpeg/avformat.h ffmpeg/avutil.h postproc/postprocess.h ffmpeg/swscale.h],, - [AC_MSG_ERROR($missing_headers)])]) + [AC_MSG_ERROR($missing_headers)]) # Check for libswresample or libavresample headers. AC_CHECK_HEADERS([libswresample/swresample.h libavresample/avresample.h]) |