From de2f5fe36da40a450e0a0f49b0b1c45b5a32db32 Mon Sep 17 00:00:00 2001 From: jacob1 Date: Sun, 24 Jan 2016 23:12:34 +0000 Subject: [PATCH] More mac compiling fixes that don't actually fix anything --- SConscript | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/SConscript b/SConscript index a4b251dbe..fcfe2f1b5 100644 --- a/SConscript +++ b/SConscript @@ -237,13 +237,15 @@ def findLibs(env, conf): if not GetOption('renderer'): #Look for SDL + runSdlConfig = platform == "Linux" or compilePlatform == "Linux" if not conf.CheckLib("SDL"): if platform == "Darwin": if not conf.CheckFramework("SDL"): FatalError("SDL framework not found or not installed") + runSdlConfig = False else: FatalError("SDL development library not found or not installed") - if platform == "Linux" or compilePlatform == "Linux": + if runSdlConfig: try: env.ParseConfig('sdl-config --cflags') if GetOption('static'):