summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell King <rmk@armlinux.org.uk>2019-05-18 17:40:37 +0100
committerRussell King <rmk@armlinux.org.uk>2019-05-18 17:52:08 +0100
commitcd437ecc155049361b221c46f43f8acd36c761c2 (patch)
tree839b66dea428a85c327dfe24abe6c2242f3a4b7b
parent78e7116a5bc6cdd9f93cbf1552d342933623ab59 (diff)
build: correct --enable option defaults
Some of the defaults for the --enable options were different from those which were described in the help text. Correct the help text to conform to the configure defaults. Signed-off-by: Russell King <rmk@armlinux.org.uk>
-rw-r--r--configure.ac8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 15e73cb..c417c46 100644
--- a/configure.ac
+++ b/configure.ac
@@ -78,7 +78,7 @@ AC_ARG_WITH(xorg-module-dir,
# Vivante GPU acceleration using libGAL
AC_ARG_ENABLE(vivante,
AC_HELP_STRING([--enable-vivante],
- [Enable Vivante libGAL acceleration support [[default=enable]]]),
+ [Enable Vivante libGAL acceleration support [[default=disabled]]]),
[ACCEL_GALCORE="$enableval"],
[ACCEL_GALCORE=no])
@@ -132,7 +132,7 @@ AC_ARG_ENABLE(etnadrm,
AC_ARG_ENABLE(etnaviv,
AC_HELP_STRING([--enable-etnaviv],
- [Enable Etnaviv (GALcore kernel driver) acceleration support [[default=enable]]]),
+ [Enable Etnaviv (GALcore kernel driver) acceleration support [[default=disabled]]]),
[ACCEL_ETNAVIV="$enableval"],
[ACCEL_ETNAVIV=no])
@@ -232,12 +232,12 @@ AC_ARG_ENABLE(dri2, AC_HELP_STRING([--disable-dri2],
[DRI2=auto])
AC_ARG_ENABLE(dri3, AC_HELP_STRING([--disable-dri3],
- [Disable DRI3 support [[default=auto]]]),
+ [Disable DRI3 support [[default=disabled]]]),
[DRI3="$enableval"],
[DRI3=no])
AC_ARG_ENABLE(present, AC_HELP_STRING([--disable-present],
- [Disable PRESENT support [[default=auto]]]),
+ [Disable PRESENT support [[default=disabled]]]),
[PRESENT="$enableval"],
[PRESENT=no])