Mesa (master): scons: Build glapi regardless of the dri option.

Jose Fonseca jrfonseca at kemper.freedesktop.org
Sun Apr 11 08:23:01 UTC 2010


Module: Mesa
Branch: master
Commit: 9faf9529f38e1b22550f4910ea863391bfa02436
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=9faf9529f38e1b22550f4910ea863391bfa02436

Author: José Fonseca <jfonseca at vmware.com>
Date:   Sat Apr 10 01:53:12 2010 +0100

scons: Build glapi regardless of the dri option.

---

 src/mesa/SConscript |   11 +++++------
 1 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/src/mesa/SConscript b/src/mesa/SConscript
index 424232a..02614b9 100644
--- a/src/mesa/SConscript
+++ b/src/mesa/SConscript
@@ -357,10 +357,9 @@ if env['platform'] != 'winddk':
 	)
 	Export('mesa')
 	
-	if not dri:
-		glapi = env.ConvenienceLibrary(
-			target = 'glapi',
-			source = glapi_sources,
-		)
-		Export('glapi')
+	glapi = env.ConvenienceLibrary(
+		target = 'glapi',
+		source = glapi_sources,
+	)
+	Export('glapi')
 




More information about the mesa-commit mailing list