Pandora port: Fix SDL detection, pkg-config is not supported

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29579 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Jarosch 2011-03-13 12:46:59 +00:00
parent 7cac18f94b
commit 0f440d108d

4
tools/configure vendored
View file

@ -625,8 +625,8 @@ pandoracc () {
prefixtools "$PNDSDK/bin/arm-angstrom-linux-gnueabi-"
# Detect SDL
GCCOPTS="$GCCOPTS `$PKG_CONFIG --cflags sdl`"
LDOPTS="$LDOPTS `$PKG_CONFIG --libs sdl`"
GCCOPTS="$GCCOPTS `$PNDSDK/bin/sdl-config --cflags`"
LDOPTS="$LDOPTS `$PNDSDK/bin/sdl-config --libs`"
# Compiler options
GCCOPTS="$GCCOPTS -O2 -fno-strict-aliasing"