]> git.sesse.net Git - mlt/blob - src/modules/vid.stab/configure
Added a fourth filter, that combines both detect and transform passes.
[mlt] / src / modules / vid.stab / configure
1 #!/bin/sh
2
3 if [ "$help" != "1" ]
4 then
5         if ! $(pkg-config vidstab)
6         then
7                 echo "- vid.stab not found: disabling"
8                 touch ../disable-vidstab
9                 exit 0
10         fi
11         
12         minver="0.98"
13         modver=$(pkg-config --modversion vidstab)
14         if [ 0 == $(expr $modver \>= $minver) ]
15         then
16                 echo "- vid.stab $modver found, but $minver or newer is required: disabling"
17                 touch ../disable-opencv
18                 exit 0
19         fi
20
21         echo > config.mak
22         case $targetos in
23         Darwin)
24                 ;;
25         MinGW)
26                 ;;
27         *)
28                 ;;
29         esac
30         exit 0
31 fi