diff options
author | José Fonseca <jrfonseca@tungstengraphics.com> | 2008-11-04 10:53:02 +0900 |
---|---|---|
committer | José Fonseca <jrfonseca@tungstengraphics.com> | 2008-11-17 12:35:54 +0900 |
commit | 40b3bb0407b6833a06e0a3a2e859cfac75b9100b (patch) | |
tree | a17ae8173cc728589088ff35259b005224607a0a | |
parent | 7b0e0e1a0d571291851e8a7b2e64c8425055cd69 (diff) |
gallium: Yet another WinCE portability fix.
-rw-r--r-- | scons/gallium.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scons/gallium.py b/scons/gallium.py index 2a42bdf2bb..c9d5368989 100644 --- a/scons/gallium.py +++ b/scons/gallium.py @@ -275,6 +275,7 @@ def generate(env): cppdefines += ['PIPE_SUBSYSTEM_WINDOWS_DISPLAY'] if platform == 'wince': cppdefines += ['PIPE_SUBSYSTEM_WINDOWS_CE'] + cppdefines += ['PIPE_SUBSYSTEM_WINDOWS_CE_OGL'] env.Append(CPPDEFINES = cppdefines) # C preprocessor includes |