summaryrefslogtreecommitdiff
path: root/tools/configure
diff options
context:
space:
mode:
Diffstat (limited to 'tools/configure')
-rwxr-xr-xtools/configure9
1 files changed, 7 insertions, 2 deletions
diff --git a/tools/configure b/tools/configure
index eb5d9dabbe..bcb7d0a864 100755
--- a/tools/configure
+++ b/tools/configure
@@ -480,8 +480,13 @@ maemocc () {
480 fi 480 fi
481 481
482 # SDL 482 # SDL
483 GCCOPTS="$GCCOPTS `pkg-config --cflags sdl`" 483 if [ $is_n900 -eq 1 ]; then
484 LDOPTS="$LDOPTS `pkg-config --libs sdl`" 484 GCCOPTS="$GCCOPTS `pkg-config --cflags sdl`"
485 LDOPTS="$LDOPTS `pkg-config --libs sdl`"
486 else
487 GCCOPTS="$GCCOPTS `sdl-config --cflags`"
488 LDOPTS="$LDOPTS `sdl-config --libs`"
489 fi
485 490
486 # glib and libosso support 491 # glib and libosso support
487 GCCOPTS="$GCCOPTS `pkg-config --cflags libosso glib-2.0 gthread-2.0`" 492 GCCOPTS="$GCCOPTS `pkg-config --cflags libosso glib-2.0 gthread-2.0`"