From 1e516032c40e59165bb0458fe7b973cd5d015400 Mon Sep 17 00:00:00 2001 From: Christopher Denter Date: Thu, 12 May 2011 00:52:14 +0200 Subject: [PATCH] ios: setup.py: remove unnecessary includes. isysroot handles all of that --- setup.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/setup.py b/setup.py index ff9f47173..97dbb5509 100644 --- a/setup.py +++ b/setup.py @@ -158,7 +158,6 @@ if True: # simple extensions sdl_libraries = ['SDL'] - extra_includes = [] extra_compile_args = [] if platform == 'darwin': # Paths as per homebrew (modified formula to use hg checkout) @@ -171,18 +170,14 @@ if True: extra_link_args += ['-framework', 'CoreGraphics'] extra_link_args += ['-framework', 'QuartzCore'] extra_link_args += ['-framework', 'ImageIO'] - extra_includes = ['/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.3.sdk/usr/include/'] - extra_includes += ['/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.3.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/'] - extra_includes += ['/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.3.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/'] extra_compile_args += ['-isysroot', '/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.3.sdk'] else: sdl_include = ['/usr/include/SDL'] - extra_includes = [] for pyx in (x for x in pyx_files if not 'graphics' in x): pxd = [x for x in pxd_files if not 'graphics' in x] module_name = get_modulename_from_file(pyx) la = libraries - lb = include_dirs + extra_includes + lb = include_dirs if pyx.endswith('sdl.pyx') or pyx.endswith('sdl.c'): la += sdl_libraries lb += sdl_include