From 42f10f6e94d08d90bf29036189dc67546c33e069 Mon Sep 17 00:00:00 2001 From: Christopher Denter Date: Wed, 25 May 2011 09:41:53 +0200 Subject: [PATCH] sdl: fix linker parameter --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index b8e4609ee..5b0d61160 100644 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ c_options = { 'use_opengl_es2': True, 'use_opengl_debug': False, 'use_glew': False, - 'use_sdl': False, + 'use_sdl': True, 'use_mesagl': False} # now check if environ is changing the default values @@ -167,10 +167,10 @@ if True: if platform == 'darwin': # Paths as per homebrew (modified formula to use hg checkout) sdl_includes = ['/usr/local/Cellar/sdl/HEAD/include/SDL'] - sdl_extra_link_args += ['-L', '/usr/local/Cellar/sdl/HEAD/lib'] + sdl_extra_link_args += ['-L/usr/local/Cellar/sdl/HEAD/lib'] else: sdl_includes = ['/usr/local/include/SDL'] - sdl_extra_link_args += ['-L', '/usr/local/lib/'] + sdl_extra_link_args += ['-L/usr/local/lib/'] pxd_core = [x for x in pxd_files if not 'graphics' in x] pxd_graphics = [x for x in pxd_files if 'graphics' in x]