Mesa (mesa_7_7_branch): svga: Do the gallium intel configure trick for svga as well

Jakob Bornecrantz wallbraker at kemper.freedesktop.org
Thu Dec 17 01:26:32 UTC 2009


Module: Mesa
Branch: mesa_7_7_branch
Commit: 5e6fff7ac4a4e0d06d394391f6e2dd2eb6ff8aee
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=5e6fff7ac4a4e0d06d394391f6e2dd2eb6ff8aee

Author: Jakob Bornecrantz <jakob at vmware.com>
Date:   Sun Jul 19 09:22:31 2009 +0200

svga: Do the gallium intel configure trick for svga as well

Since the drivers we produce on systems where we use
configure depend on none stable kernel API the driver
deliverables should not be built by default in the
mesa 7.7 release.

People wishing to shoot them self in the foot have to
pull the trigger themself, we just hand them the gun.

---

 configure.ac |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/configure.ac b/configure.ac
index 25e4321..e15e1f6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1200,13 +1200,15 @@ dnl
 dnl Gallium SVGA configuration
 dnl
 AC_ARG_ENABLE([gallium-svga],
-    [AS_HELP_STRING([--disable-gallium-svga],
-        [build gallium SVGA @<:@default=enabled@:>@])],
+    [AS_HELP_STRING([--enable-gallium-svga],
+        [build gallium SVGA @<:@default=disabled@:>@])],
     [enable_gallium_svga="$enableval"],
-    [enable_gallium_svga=yes])
+    [enable_gallium_svga=auto])
 if test "x$enable_gallium_svga" = xyes; then
     GALLIUM_WINSYS_DRM_DIRS="$GALLIUM_WINSYS_DRM_DIRS vmware"
     GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS svga"
+elif test "x$enable_gallium_svga" = xauto; then
+    GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS svga"
 fi
 
 dnl




More information about the mesa-commit mailing list