aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 7 insertions, 1 deletions
diff --git a/configure b/configure
index 47c68b8..ecd2215 100755
--- a/configure
+++ b/configure
@@ -193,7 +193,12 @@ if [ "$ram_fixed" = "yes" ]; then
CFLAGS="$CFLAGS -DRAM_FIXED"
fi
-if [ "$platform" = "maemo" ]; then
+if [ "$platform" = "generic" ]; then
+ generic_cflags=`sdl-config --cflags`
+ generic_ldlibs=`sdl-config --libs`
+ CFLAGS="$CFLAGS $generic_cflags"
+ LDFLAGS="$LDFLAGS $generic_ldlibs"
+elif [ "$platform" = "maemo" ]; then
maemo_cflags=`pkg-config --cflags hildon-1`
maemo_ldlibs=`pkg-config --libs hildon-1`
CFLAGS="$CFLAGS -DMAEMO -DMAEMO_CHANGES $maemo_cflags"
@@ -223,6 +228,7 @@ echo "platform $platform"
echo "sound driver $sound_driver"
echo "C compiler $CC"
echo "C compiler flags $CFLAGS"
+echo "linker flags $LDFLAGS"
echo "enable dynarec $enable_dynarec"
echo "ARMv7 optimizations $have_armv7"
echo "enable ARM NEON $have_arm_neon"