Module: Mesa Branch: mesa_7_5_branch Commit: d27d659043bd7f2bd9a2636209f299cda0664230 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=d27d659043bd7f2bd9a2636209f299cda0664230
Author: Vinson Lee <[email protected]> Date: Wed Sep 9 08:21:05 2009 -0600 scons: Set default_dri to no for Mac OS. Mac OS does not have libdrm. --- common.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common.py b/common.py index a687efc..ccb9629 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' _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
