mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 02:27:39 -04:00
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:
parent
efdf49668e
commit
fb790be29e
1 changed files with 7 additions and 2 deletions
9
tools/configure
vendored
9
tools/configure
vendored
|
@ -480,8 +480,13 @@ maemocc () {
|
|||
fi
|
||||
|
||||
# SDL
|
||||
GCCOPTS="$GCCOPTS `pkg-config --cflags sdl`"
|
||||
LDOPTS="$LDOPTS `pkg-config --libs 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`"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue