You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mlt/src/modules/vorbis/configure

19 lines
274 B

#!/bin/sh
if [ "$help" != "1" ]
then
pkg-config vorbisfile 2> /dev/null
disable_vorbis=$?
if [ "$disable_vorbis" = "0" ]
then
echo "vorbis libmltvorbis$LIBSUF" >> ../producers.dat
else
echo "- ogg vorbis not found: disabling"
touch ../disable-vorbis
fi
fi