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/dv/configure

20 lines
307 B

#!/bin/sh
if [ "$help" != "1" ]
then
pkg-config libdv 2> /dev/null
disable_libdv=$?
if [ "$disable_libdv" = "0" ]
then
echo "libdv libmltdv$LIBSUF" >> ../producers.dat
echo "libdv libmltdv$LIBSUF" >> ../consumers.dat
else
echo "- libdv not found: disabling"
touch ../disable-dv
fi
fi