From 1fedb469551e7218a76a5c5746c6549013a91b6c Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Tue, 27 May 2008 05:51:34 +0000 Subject: [PATCH] We don't even use ffmpeg's software image scalar, but the directory and some of its contents need to be present to build ffmpeg. The version is tied to mplayer rather than to ffmpeg so grab an arbitrary version that allows ffmpeg to compile. --- stepmania/Utils/build.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/stepmania/Utils/build.sh b/stepmania/Utils/build.sh index 0f3ea3c325..12eac20515 100755 --- a/stepmania/Utils/build.sh +++ b/stepmania/Utils/build.sh @@ -102,10 +102,13 @@ done revision=8448 repository=svn://svn.mplayerhq.hu/ffmpeg/trunk/ ffmpeg=ffmpeg-r$revision +swscale_rev=26201 +swscale_repo=svn://svn.mplayerhq.hu/mplayer/trunk/libswscale if [ ! -d $ffmpeg ]; then message 'Downloading ffmpeg' if which svn &>/dev/null; then - call svn co -r $revision $repository $ffmpeg + call svn co --ignore-externals -r $revision $repository $ffmpeg + call svn co -r $swscale_rev $swscale_repo $ffmpeg/libswscale else failure 'Install subversion.' fi