OSDN Git Service

scons: Remove references to u_thread.c
authorJosé Fonseca <jfonseca@vmware.com>
Thu, 26 Jan 2012 17:25:30 +0000 (17:25 +0000)
committerJosé Fonseca <jfonseca@vmware.com>
Thu, 26 Jan 2012 17:29:38 +0000 (17:29 +0000)
For future reference: always run "git grep" on refactorings.

src/mapi/glapi/SConscript
src/mapi/shared-glapi/SConscript
src/mapi/vgapi/SConscript

index dad7d59..9882806 100644 (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)
index f17a4dd..0097c1c 100644 (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 = {
index 5b4549e..10241fd 100644 (file)
@@ -32,7 +32,6 @@ mapi_sources = [
     'table.c',
     'u_current.c',
     'u_execmem.c',
-    'u_thread.c',
 ]
 
 vgapi_objects = []