diff options
author | Brian Paul <brianp@vmware.com> | 2009-09-09 08:33:39 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2009-09-09 08:33:39 -0600 |
commit | 0c309bb494b6ee1c403442d1207743f749f95b6e (patch) | |
tree | a3cb118c850ef4152312e81afdb7543f45ef2e3e /common.py | |
parent | c6c44bf48124dd5b4661014a8d58482c5a54557f (diff) | |
parent | d27d659043bd7f2bd9a2636209f299cda0664230 (diff) | |
download | mesa-0c309bb494b6ee1c403442d1207743f749f95b6e.tar.gz mesa-0c309bb494b6ee1c403442d1207743f749f95b6e.tar.bz2 mesa-0c309bb494b6ee1c403442d1207743f749f95b6e.zip |
Merge branch 'mesa_7_5_branch' into mesa_7_6_branch
Conflicts:
Makefile
configs/default
progs/glsl/Makefile
src/gallium/auxiliary/util/u_simple_shaders.c
src/gallium/state_trackers/glx/xlib/xm_api.c
src/mesa/drivers/dri/i965/brw_draw_upload.c
src/mesa/drivers/dri/i965/brw_vs_emit.c
src/mesa/drivers/dri/intel/intel_context.h
src/mesa/drivers/dri/intel/intel_pixel.c
src/mesa/drivers/dri/intel/intel_pixel_read.c
src/mesa/main/texenvprogram.c
src/mesa/main/version.h
Diffstat (limited to 'common.py')
-rw-r--r-- | common.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common.py b/common.py index a687efc86fa..ccb962981d1 100644 --- a/common.py +++ b/common.py @@ -33,9 +33,9 @@ else: default_machine = _platform.machine() default_machine = _machine_map.get(default_machine, 'generic') -if default_platform in ('linux', 'freebsd', 'darwin'): +if default_platform in ('linux', 'freebsd'): default_dri = 'yes' -elif default_platform in ('winddk', 'windows', 'wince'): +elif default_platform in ('winddk', 'windows', 'wince', 'darwin'): default_dri = 'no' else: default_dri = 'no' |