diff options
author | brian-ch <brian-ch@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2016-02-14 18:13:57 +0000 |
---|---|---|
committer | brian-ch <brian-ch@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2016-02-14 18:13:57 +0000 |
commit | 4dea02ed19873fbd8ee454a1b1147ad10436ab91 (patch) | |
tree | 9c3fe3adb2e83cda6b41cba5fdf74ab8bc2dfafe /configure | |
parent | 460102260b2d0dfb02e14d88646f6c669f20e898 (diff) | |
download | usdx-4dea02ed19873fbd8ee454a1b1147ad10436ab91.tar.gz usdx-4dea02ed19873fbd8ee454a1b1147ad10436ab91.tar.xz usdx-4dea02ed19873fbd8ee454a1b1147ad10436ab91.zip |
Only try to include libswresample if it is installed and we have pascal headers for that specific version
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@3194 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -7128,7 +7128,9 @@ $as_echo "[$FFMPEG_VERSION]" >&6; } -# find FFMpeg's swresample lib (just if FFMpeg is compiled in GPL mode) +# the first swresample header translation was in ffmpeg 2.1 (avutil 52.48.100) +if [ "$libavutil_VERSION_MAJOR" -gt 80 ] || ([ "$libavutil_VERSION_MAJOR" -eq 52 ] && [ "$libavutil_VERSION_MINOR" -ge 48 ]); then + # find FFMpeg's swresample lib (just if FFMpeg is compiled in GPL mode) have_lib="no" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libswresample" >&5 @@ -7362,6 +7364,8 @@ $as_echo "[$FFMPEG_VERSION]" >&6; } +fi + # find projectM version libprojectM_PKG="libprojectM >= 0.98" |