scons: Remove references to u_thread.c

For future reference: always run "git grep" on refactorings.
This commit is contained in:
José Fonseca
2012-01-26 17:25:30 +00:00
parent b7a81b6e51
commit 1d1033926d
3 changed files with 8 additions and 4 deletions
-1
View File
@@ -38,7 +38,6 @@ glapi_sources = [
mapi_sources = [
'u_current.c',
'u_execmem.c',
'u_thread.c',
]
for s in mapi_sources:
o = env.SharedObject(s[:-2], '../mapi/' + s)
+8 -2
View File
@@ -8,8 +8,14 @@ Import('*')
def mapi_objects(env, printer, mode):
"""Return mapi objects built for the given printer and mode."""
mapi_sources = {
'glapi': ['entry.c', 'mapi_glapi.c', 'stub.c', 'table.c',
'u_current.c', 'u_execmem.c', 'u_thread.c'],
'glapi': [
'entry.c',
'mapi_glapi.c',
'stub.c',
'table.c',
'u_current.c',
'u_execmem.c',
],
'bridge': ['entry.c'],
}
mapi_defines = {
-1
View File
@@ -32,7 +32,6 @@ mapi_sources = [
'table.c',
'u_current.c',
'u_execmem.c',
'u_thread.c',
]
vgapi_objects = []