[Scummvm-cvs-logs] scummvm master -> 9ae52541ce27573b71e9eda9ca092d7472bae36d

criezy criezy at scummvm.org
Sun Mar 13 18:13:59 CET 2016


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:
9ae52541ce BUILD: Add OpenGL framework in static build link command on OS X


Commit: 9ae52541ce27573b71e9eda9ca092d7472bae36d
    https://github.com/scummvm/scummvm/commit/9ae52541ce27573b71e9eda9ca092d7472bae36d
Author: Thierry Crozat (criezy at scummvm.org)
Date: 2016-03-13T17:10:58Z

Commit Message:
BUILD: Add OpenGL framework in static build link command on OS X

This should be provided by sdl-config --static-libs, but when using
SDL2 it is missing for me.

Changed paths:
    ports.mk



diff --git a/ports.mk b/ports.mk
index bcdbe53..64baf1b 100644
--- a/ports.mk
+++ b/ports.mk
@@ -223,6 +223,8 @@ ifneq ($(BACKEND), iphone)
 ifneq ($(BACKEND), ios7)
 # Static libaries, used for the scummvm-static and iphone targets
 OSX_STATIC_LIBS := `$(SDLCONFIG) --static-libs`
+# With sdl2-config we don't always get the OpenGL framework
+OSX_STATIC_LIBS := -framework OpenGL
 endif
 endif
 






More information about the Scummvm-git-logs mailing list