mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 23:31:57 +00:00
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.
This commit is contained in:
parent
50c98d9ee1
commit
a429411804
4
configure
vendored
4
configure
vendored
@ -2779,8 +2779,8 @@ case $_backend in
|
|||||||
;;
|
;;
|
||||||
iphone)
|
iphone)
|
||||||
LIBS="$LIBS -lobjc -framework UIKit -framework CoreGraphics -framework OpenGLES"
|
LIBS="$LIBS -lobjc -framework UIKit -framework CoreGraphics -framework OpenGLES"
|
||||||
LIBS="$LIBS -framework QuartzCore -framework GraphicsServices -framework CoreFoundation"
|
LIBS="$LIBS -framework QuartzCore -framework CoreFoundation -framework Foundation"
|
||||||
LIBS="$LIBS -framework Foundation -framework AudioToolbox -framework CoreAudio"
|
LIBS="$LIBS -framework AudioToolbox -framework CoreAudio"
|
||||||
;;
|
;;
|
||||||
linuxmoto)
|
linuxmoto)
|
||||||
DEFINES="$DEFINES -DLINUXMOTO"
|
DEFINES="$DEFINES -DLINUXMOTO"
|
||||||
|
5
ports.mk
5
ports.mk
@ -174,9 +174,8 @@ iphone: $(OBJS)
|
|||||||
$(CXX) $(LDFLAGS) -o scummvm $(OBJS) \
|
$(CXX) $(LDFLAGS) -o scummvm $(OBJS) \
|
||||||
$(OSX_STATIC_LIBS) \
|
$(OSX_STATIC_LIBS) \
|
||||||
-framework UIKit -framework CoreGraphics -framework OpenGLES \
|
-framework UIKit -framework CoreGraphics -framework OpenGLES \
|
||||||
-framework GraphicsServices -framework CoreFoundation -framework QuartzCore \
|
-framework CoreFoundation -framework QuartzCore -framework Foundation \
|
||||||
-framework Foundation -framework AudioToolbox -framework CoreAudio \
|
-framework AudioToolbox -framework CoreAudio -lobjc -lz
|
||||||
-lobjc -lz
|
|
||||||
|
|
||||||
# Special target to create a snapshot disk image for Mac OS X
|
# Special target to create a snapshot disk image for Mac OS X
|
||||||
# TODO: Replace AUTHORS by Credits.rtf
|
# TODO: Replace AUTHORS by Credits.rtf
|
||||||
|
Loading…
x
Reference in New Issue
Block a user