Missed update to private test repo version.
[dcpomatic.git] / hacks / build-all-ffmpeg
1 #!/bin/bash
2
3 FFMPEGS=/home/carl/ffmpeg
4
5 # 0.6, 0.7, 0.8 need significant work, I think.
6
7 for v in 0.9.2 0.10.4 0.11.1; do
8     PKG_CONFIG_PATH=$FFMPEGS/$v/lib/pkgconfig ./waf configure
9     if [ "$?" != "0" ]; then
10         echo "$v: configure FAIL"
11         exit 1
12     fi
13     ./waf
14     if [ "$?" != "0" ]; then
15         echo "$v: build FAIL"
16         exit 1
17     fi
18     echo "$v: PASS"
19 done
20