X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=configure;h=ecd2215b59d2b2a731fd6e5b2fa348899721c497;hp=47c68b8e876ee6667e8666b17eca30562e84d6b3;hb=7badc9353b9570fd1c67827cfb477cef07974ddb;hpb=6469a8c407ff23af8b7a6218f759b368eec7c339 diff --git a/configure b/configure index 47c68b8e..ecd2215b 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"