Fix SDL detection on Nokia N8xx

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29295 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Jarosch 2011-02-13 11:57:32 +00:00
parent efdf49668e
commit fb790be29e

5
tools/configure vendored
View file

@ -480,8 +480,13 @@ maemocc () {
fi
# SDL
if [ $is_n900 -eq 1 ]; then
GCCOPTS="$GCCOPTS `pkg-config --cflags sdl`"
LDOPTS="$LDOPTS `pkg-config --libs sdl`"
else
GCCOPTS="$GCCOPTS `sdl-config --cflags`"
LDOPTS="$LDOPTS `sdl-config --libs`"
fi
# glib and libosso support
GCCOPTS="$GCCOPTS `pkg-config --cflags libosso glib-2.0 gthread-2.0`"