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

28 lines
598 B

#!/bin/sh
if [ "$help" != "1" ]
then
sdl-config --version > /dev/null 2>&1
disable_sdl=$?
if [ "$disable_sdl" = "0" ]
then
echo > config.mak
image=`sdl-config --prefix`/include/SDL/SDL_image.h
echo "sdl libmltsdl$LIBSUF" >> ../consumers.dat
echo "sdl_preview libmltsdl$LIBSUF" >> ../consumers.dat
echo "sdl_still libmltsdl$LIBSUF" >> ../consumers.dat
if [ -f "$image" ]
then
echo "sdl_image libmltsdl$LIBSUF" >> ../producers.dat
echo "WITH_SDL_IMAGE=1" >> config.mak
fi
else
echo "- sdl development libs not found: disabling"
touch ../disable-sdl
fi
fi