diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-05-30 20:04:11 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-05-30 20:04:11 +0100 |
| commit | b4ff18156c52e65404459966ff4e551604e235c3 (patch) | |
| tree | 1e764e6886c6b7eae6029d5a8871640d1edf0cc3 /hacks/build-all-ffmpeg | |
| parent | 260747962d87ed12115e940f7a9e86fcf7983ea4 (diff) | |
Move some stuff around.
Diffstat (limited to 'hacks/build-all-ffmpeg')
| -rwxr-xr-x | hacks/build-all-ffmpeg | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/hacks/build-all-ffmpeg b/hacks/build-all-ffmpeg new file mode 100755 index 000000000..a3d197c28 --- /dev/null +++ b/hacks/build-all-ffmpeg @@ -0,0 +1,20 @@ +#!/bin/bash + +FFMPEGS=/home/carl/ffmpeg + +# 0.6, 0.7, 0.8 need significant work, I think. + +for v in 0.9.2 0.10.4 0.11.1; do + PKG_CONFIG_PATH=$FFMPEGS/$v/lib/pkgconfig ./waf configure + if [ "$?" != "0" ]; then + echo "$v: configure FAIL" + exit 1 + fi + ./waf + if [ "$?" != "0" ]; then + echo "$v: build FAIL" + exit 1 + fi + echo "$v: PASS" +done + |
