diff options
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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" |