From: lilo_booter Date: Wed, 13 Apr 2005 12:58:18 +0000 (+0000) Subject: Conditional compilation of westley/libxml2 components X-Git-Url: http://research.m1stereo.tv/gitweb?a=commitdiff_plain;h=efe712aeb077f97da2d6d70fb0541ae747b02330;hp=b21ea9a5416460213574bd00ce8f61be3d1b63c5;p=melted Conditional compilation of westley/libxml2 components git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@697 d19143bc-622f-0410-bfdd-b5b2a6649095 --- diff --git a/src/modules/westley/configure b/src/modules/westley/configure index c76eda0..c8bb348 100755 --- a/src/modules/westley/configure +++ b/src/modules/westley/configure @@ -3,14 +3,17 @@ if [ "$help" != "1" ] then -cat << EOF >> ../producers.dat -westley libmltwestley$LIBSUF -westley-xml libmltwestley$LIBSUF -EOF - -cat << EOF >> ../consumers.dat -westley libmltwestley$LIBSUF -EOF + 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