]> git.sesse.net Git - mlt/blob - src/modules/sox/configure
Bourne shell compliance
[mlt] / src / modules / sox / configure
1 #!/bin/sh
2
3 if [ "$help" != "1" ]
4 then
5
6         which libst-config > /dev/null 2>&1
7         disable_sox=$?
8
9         if [ "$disable_sox" = "0" ]
10         then
11                 echo "sox               libmltsox$LIBSUF" >> ../filters.dat
12         else
13                 echo "- sox not found: disabling"
14                 touch ../disable-sox
15         fi
16
17 fi