[Scummvm-cvs-logs] scummvm master -> a42941180486cc698cdcaf46a9c9f33c7490c24d

lordhoto lordhoto at gmail.com
Fri Feb 14 02:22:10 CET 2014


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
a429411804 IPHONE: Don't link against private framework GraphicsServices.


Commit: a42941180486cc698cdcaf46a9c9f33c7490c24d
    https://github.com/scummvm/scummvm/commit/a42941180486cc698cdcaf46a9c9f33c7490c24d
Author: Johannes Schickel (lordhoto at scummvm.org)
Date: 2014-02-13T17:20:59-08:00

Commit Message:
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.

Changed paths:
    configure
    ports.mk



diff --git a/configure b/configure
index a2022c1..567cb09 100755
--- a/configure
+++ b/configure
@@ -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"
diff --git a/ports.mk b/ports.mk
index 9b54b35..e432c8c 100644
--- a/ports.mk
+++ b/ports.mk
@@ -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






More information about the Scummvm-git-logs mailing list