scons: Build xlib swrast too.
authorJosé Fonseca <jfonseca@vmware.com>
Fri, 26 Oct 2012 08:45:59 +0000 (09:45 +0100)
committerJosé Fonseca <jfonseca@vmware.com>
Fri, 26 Oct 2012 09:50:48 +0000 (10:50 +0100)
Helpful for debugging.

src/mesa/drivers/SConscript
src/mesa/drivers/x11/SConscript [new file with mode: 0644]

index ab0f894329060129bc07d10719ada0d3fae40510..f1c4da6b86c9e471fbf6c9da9551b6546e824c96 100644 (file)
@@ -2,5 +2,8 @@ Import('*')
 
 SConscript('osmesa/SConscript')
 
+if env['x11']:
+    SConscript('x11/SConscript')
+
 if env['platform'] == 'windows':
     SConscript('windows/gdi/SConscript')
diff --git a/src/mesa/drivers/x11/SConscript b/src/mesa/drivers/x11/SConscript
new file mode 100644 (file)
index 0000000..cfa2815
--- /dev/null
@@ -0,0 +1,48 @@
+Import('*')
+
+env = env.Clone()
+
+env.Append(CPPPATH = [
+    '#/src/mapi',
+    '#/src/mesa',
+    '#/src/mesa/main',
+])
+
+env.Append(CPPDEFINES = ['USE_XSHM'])
+
+env.Prepend(LIBS = env['X11_LIBS'])
+
+env.Prepend(LIBS = [
+    glapi,
+    glsl,
+    mesa,
+])
+
+sources = [
+       'fakeglx.c',
+       'glxapi.c',
+       'xfonts.c',
+       'xm_api.c',
+       'xm_buffer.c',
+       'xm_dd.c',
+       'xm_line.c',
+       'xm_tri.c',
+]
+
+# The sources depend on the python-generated GL API files/headers.
+env.Depends(sources, glapi_headers)
+
+# libGL.so.1.6
+libgl_1_6 = env.SharedLibrary(
+    target ='GL',
+    source = sources,
+    SHLIBSUFFIX = env['SHLIBSUFFIX'] + '.1.6',
+)
+
+# libGL.so.1
+libgl = env.subst('${SHLIBPREFIX}GL${SHLIBSUFFIX}')
+libgl_1 = libgl + '.1'
+env.Command(libgl_1, libgl_1_6, "ln -sf ${SOURCE.file} ${TARGET}")
+env.Command(libgl, libgl_1, "ln -sf ${SOURCE.file} ${TARGET}")
+
+env.Alias('libgl-xlib-swrast', libgl)