diff options
author | Russell King <rmk@armlinux.org.uk> | 2017-03-16 11:33:54 +0000 |
---|---|---|
committer | Russell King <rmk@armlinux.org.uk> | 2017-03-16 11:33:54 +0000 |
commit | 52e29ae4defe9ee0cae738f9a49539d1766c38fe (patch) | |
tree | f0031434f1f8728bef6fae8b51e2850d78cdd49b | |
parent | 40108bbd5b1ac59a1f70445e23575055463b74d4 (diff) |
build: change defaults for etnaviv and vivante backends
Change the default configure behaviour from auto-detecting the etnaviv
and vivante GPU backends to explicitly needing these to be disabled.
This avoids some configuration tests that may confuse users for the
common code.
Signed-off-by: Russell King <rmk@armlinux.org.uk>
-rw-r--r-- | configure.ac | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac index 34eae9b..15495d6 100644 --- a/configure.ac +++ b/configure.ac @@ -77,10 +77,10 @@ AC_ARG_WITH(xorg-module-dir, # Vivante GPU acceleration using libGAL AC_ARG_ENABLE(vivante, - AC_HELP_STRING([--disable-vivante], - [Disable Vivante libGAL acceleration support [[default=enable]]]), + AC_HELP_STRING([--enable-vivante], + [Enable Vivante libGAL acceleration support [[default=enable]]]), [ACCEL_GALCORE="$enableval"], - [ACCEL_GALCORE=auto]) + [ACCEL_GALCORE=no]) AC_ARG_WITH(libgal-include, AC_HELP_STRING([--with-libgal-include=PATH], @@ -131,10 +131,10 @@ AC_ARG_ENABLE(etnadrm, [ACCEL_ETNADRM=auto]) AC_ARG_ENABLE(etnaviv, - AC_HELP_STRING([--disable-etnaviv], - [Disable Etnaviv (GALcore kernel driver) acceleration support [[default=enable]]]), + AC_HELP_STRING([--enable-etnaviv], + [Enable Etnaviv (GALcore kernel driver) acceleration support [[default=enable]]]), [ACCEL_ETNAVIV="$enableval"], - [ACCEL_ETNAVIV=auto]) + [ACCEL_ETNAVIV=no]) AC_ARG_WITH(etnaviv-source, AC_HELP_STRING([--with-etnaviv-source=PATH], |