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

20 lines
406 B

#!/bin/sh
if [ "$help" != "1" ]
then
which xml2-config > /dev/null 2>&1
disable_xml2=$?
if [ "$disable_xml2" = "0" ]
then
echo "westley libmltwestley$LIBSUF" >> ../producers.dat
echo "westley-xml libmltwestley$LIBSUF" >> ../producers.dat
echo "westley libmltwestley$LIBSUF" >> ../consumers.dat
else
echo "- xml2 not found: disabling westley modules"
touch ../disable-westley
fi
fi