diff options
author | Johannes Schickel | 2014-02-14 02:20:59 +0100 |
---|---|---|
committer | Johannes Schickel | 2014-02-14 02:20:59 +0100 |
commit | a42941180486cc698cdcaf46a9c9f33c7490c24d (patch) | |
tree | bbef11ac067ba5ed35dbf98e73c1f062c82f3d3e /configure | |
parent | 50c98d9ee1910cf457e552f837bbda661f0dbd85 (diff) | |
download | scummvm-rg350-a42941180486cc698cdcaf46a9c9f33c7490c24d.tar.gz scummvm-rg350-a42941180486cc698cdcaf46a9c9f33c7490c24d.tar.bz2 scummvm-rg350-a42941180486cc698cdcaf46a9c9f33c7490c24d.zip |
IPHONE: Don't link against private framework GraphicsServices.
Nothing from that framework in specific is used, thus it's not required to
link against it.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2779,8 +2779,8 @@ case $_backend in ;; iphone) LIBS="$LIBS -lobjc -framework UIKit -framework CoreGraphics -framework OpenGLES" - LIBS="$LIBS -framework QuartzCore -framework GraphicsServices -framework CoreFoundation" - LIBS="$LIBS -framework Foundation -framework AudioToolbox -framework CoreAudio" + LIBS="$LIBS -framework QuartzCore -framework CoreFoundation -framework Foundation" + LIBS="$LIBS -framework AudioToolbox -framework CoreAudio" ;; linuxmoto) DEFINES="$DEFINES -DLINUXMOTO" |