configure.ac: Remove gallium-g3dvl flag.
authorMatt Turner <mattst88@gmail.com>
Thu, 18 Apr 2013 01:21:47 +0000 (18:21 -0700)
committerMatt Turner <mattst88@gmail.com>
Fri, 19 Apr 2013 04:52:26 +0000 (21:52 -0700)
It's next to useless, since it just allows you to turn off VDPAU and
XvMC with a single switch. Just check whether Gallium drivers are
enabled instead.

Reviewed-by: Christian König <christian.koenig@amd.com>
configure.ac

index 6ffe3f20c931948503b464dbc9a8d651f7e8238e..50e60f623bedae371601959c19951e52304cdaac 100644 (file)
@@ -1317,22 +1317,7 @@ AM_CONDITIONAL(HAVE_OPENVG, test "x$enable_openvg" = xyes)
 dnl
 dnl Gallium G3DVL configuration
 dnl
-AC_ARG_ENABLE([gallium-g3dvl],
-    [AS_HELP_STRING([--disable-gallium-g3dvl],
-        [build gallium g3dvl @<:@default=auto@:>@])],
-    [enable_gallium_g3dvl="$enableval"],
-    [enable_gallium_g3dvl=auto])
-if test "x$enable_gallium_g3dvl" = xauto; then
-    if test "x$with_gallium_drivers" != x; then
-        enable_gallium_g3dvl=yes
-    fi
-fi
-
-if test "x$enable_gallium_g3dvl" = xyes; then
-    if test "x$with_gallium_drivers" = x; then
-        AC_MSG_ERROR([cannot enable G3DVL without Gallium])
-    fi
-
+if test -n "$with_gallium_drivers"; then
     if test "x$enable_xvmc" = xauto; then
        PKG_CHECK_EXISTS([xvmc], [enable_xvmc=yes], [enable_xvmc=no])
     fi