diff options
author | Emil Velikov <[email protected]> | 2013-09-29 13:05:07 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2013-11-16 14:00:15 +0000 |
commit | c5062726f1da77139d3fc576536eb431bbeb9c0e (patch) | |
tree | 24f0e57ed62b5023a6f2c5178963c61cf7b5de1c | |
parent | 1aeafcb7c55775c4d83fbcb874673d17e8a2c55e (diff) |
scons: drop obsolete enabled_apis variable
The variable was forgotten during the FEATURE_* removal.
Signed-off-by: Emil Velikov <[email protected]>
-rw-r--r-- | src/mesa/SConscript | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/mesa/SConscript b/src/mesa/SConscript index 42134983c50..a2bb9f1318f 100644 --- a/src/mesa/SConscript +++ b/src/mesa/SConscript @@ -18,9 +18,6 @@ env.Append(CPPPATH = [ Dir('.'), # src/mesa build path ]) -enabled_apis = [] -enabled_apis += ['GL'] - if env['platform'] == 'windows': env.Append(CPPDEFINES = [ '_GDI32_', # prevent gl* being declared __declspec(dllimport) in MS headers @@ -340,10 +337,6 @@ mesa_sources = ( GLAPI = '#src/mapi/glapi/' -if env['gles']: - - enabled_apis += ['ES1', 'ES2'] - get_hash_header = env.CodeGenerate( target = 'main/get_hash.h', script = 'main/get_hash_generator.py', |