#!/bin/sh

if [ "$help" != "1" ]
then

	pkg-config samplerate 2> /dev/null
	disable_samplerate=$?

	if [ "$disable_samplerate" != "0" ]
	then
		echo "- libsamplerate not found: disabling"
		touch ../disable-resample
	fi
	exit 0
fi

