From 0f440d108db1ed3083a5ec62629752d524892cb2 Mon Sep 17 00:00:00 2001 From: Thomas Jarosch Date: Sun, 13 Mar 2011 12:46:59 +0000 Subject: [PATCH] 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 --- tools/configure | 4 ++-- 1 file 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 () { 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" -- 2.11.4.GIT