Skip to content

Commit

Permalink
IPHONE: Don't link against private framework GraphicsServices.
Browse files Browse the repository at this point in the history
Nothing from that framework in specific is used, thus it's not required to
link against it.
  • Loading branch information
Johannes Schickel committed Feb 14, 2014
1 parent 50c98d9 commit a429411
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions configure
Expand Up @@ -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"
Expand Down
5 changes: 2 additions & 3 deletions ports.mk
Expand Up @@ -174,9 +174,8 @@ iphone: $(OBJS)
$(CXX) $(LDFLAGS) -o scummvm $(OBJS) \
$(OSX_STATIC_LIBS) \
-framework UIKit -framework CoreGraphics -framework OpenGLES \
-framework GraphicsServices -framework CoreFoundation -framework QuartzCore \
-framework Foundation -framework AudioToolbox -framework CoreAudio \
-lobjc -lz
-framework CoreFoundation -framework QuartzCore -framework Foundation \
-framework AudioToolbox -framework CoreAudio -lobjc -lz

# Special target to create a snapshot disk image for Mac OS X
# TODO: Replace AUTHORS by Credits.rtf
Expand Down

0 comments on commit a429411

Please sign in to comment.