eb20744d1b4899d89a64089e3c2e81eb2ada6735
[melted] / src / modules / vorbis / configure
1 #!/bin/sh
2
3 if [ "$help" != "1" ]
4 then
5
6         pkg-config vorbisfile 2> /dev/null
7         disable_vorbis=$?
8
9         if [ "$disable_vorbis" == "0" ]
10         then
11                 echo "vorbis            libmltvorbis$LIBSUF" >> ../producers.dat
12         else
13                 echo "- ogg vorbis not found: disabling"
14                 touch ../disable-vorbis
15         fi
16
17 fi
18