summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Jarosch <tomj@simonv.com>2011-03-13 12:46:59 +0000
committerThomas Jarosch <tomj@simonv.com>2011-03-13 12:46:59 +0000
commit0f440d108db1ed3083a5ec62629752d524892cb2 (patch)
tree2dfe8a5d5dd5f54913cf4e9fa39092b790ec6e76
parent7cac18f94b512d8541456c2a68f7bfb05a5bd6e8 (diff)
downloadrockbox-0f440d108db1ed3083a5ec62629752d524892cb2.tar.gz
rockbox-0f440d108db1ed3083a5ec62629752d524892cb2.zip
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
-rwxr-xr-xtools/configure4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/configure b/tools/configure
index 852c388bb7..9f95feca8b 100755
--- a/tools/configure
+++ b/tools/configure
@@ -625,8 +625,8 @@ pandoracc () {
625 prefixtools "$PNDSDK/bin/arm-angstrom-linux-gnueabi-" 625 prefixtools "$PNDSDK/bin/arm-angstrom-linux-gnueabi-"
626 626
627 # Detect SDL 627 # Detect SDL
628 GCCOPTS="$GCCOPTS `$PKG_CONFIG --cflags sdl`" 628 GCCOPTS="$GCCOPTS `$PNDSDK/bin/sdl-config --cflags`"
629 LDOPTS="$LDOPTS `$PKG_CONFIG --libs sdl`" 629 LDOPTS="$LDOPTS `$PNDSDK/bin/sdl-config --libs`"
630 630
631 # Compiler options 631 # Compiler options
632 GCCOPTS="$GCCOPTS -O2 -fno-strict-aliasing" 632 GCCOPTS="$GCCOPTS -O2 -fno-strict-aliasing"