#!/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

