From 3c77617141542fe6bb6aac897aff554cd3c1ec08 Mon Sep 17 00:00:00 2001
From: Mathieu Virbel <mat@kivy.org>
Date: Thu, 1 Nov 2018 20:39:28 +0100
Subject: [PATCH] sdl2: fix missing pbx frameworks

---
 recipes/sdl2/__init__.py | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/recipes/sdl2/__init__.py b/recipes/sdl2/__init__.py
index df2f8a1..eb4b8fb 100644
--- a/recipes/sdl2/__init__.py
+++ b/recipes/sdl2/__init__.py
@@ -9,8 +9,10 @@ class LibSDL2Recipe(Recipe):
     #url = "https://bitbucket.org/slime73/sdl-experiments/get/{version}.tar.gz"
     library = "Xcode-iOS/SDL/build/Release-{arch.sdk}/libSDL2.a"
     include_dir = "include"
-    pbx_frameworks = ["OpenGLES", "AudioToolbox", "QuartzCore", "CoreGraphics",
-            "CoreMotion", "GameController", "AVFoundation", "Metal"]
+    pbx_frameworks = [
+        "OpenGLES", "AudioToolbox", "QuartzCore", "CoreGraphics",
+        "CoreMotion", "GameController", "AVFoundation", "Metal",
+        "UIKit"]
 
     def prebuild_arch(self, arch):
         if self.has_marker("patched"):