#!/bin/sh

if [ "$help" != "1" ]
then
	if ! $(pkg-config movit)
	then
		echo "- movit not found: disabling"
		touch ../disable-opengl
		exit 0
	fi

	echo > config.mak
	case $targetos in
	Darwin)
		;;
	MinGW)
		;;
	*)
		;;
	esac
	exit 0
fi
