diff options
author | Russell King <rmk@armlinux.org.uk> | 2017-03-16 11:49:18 +0000 |
---|---|---|
committer | Russell King <rmk@armlinux.org.uk> | 2017-03-16 11:49:18 +0000 |
commit | 6e7d019fffee3f2adfbe2c523bc8f9e48518d085 (patch) | |
tree | 8ce7dbab2b978741ccf35325064902b1c3ca363a | |
parent | 34357ebc0bee3554bb63e96819d2559606d1bec8 (diff) |
build: disable DRI3 and present extensions by default
Disable the DRI3 and PRESENT extensions by default as they do not work
correctly with etnaviv MESA.
Signed-off-by: Russell King <rmk@armlinux.org.uk>
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 43e1b18..6df5c32 100644 --- a/configure.ac +++ b/configure.ac @@ -234,12 +234,12 @@ AC_ARG_ENABLE(dri2, AC_HELP_STRING([--disable-dri2], AC_ARG_ENABLE(dri3, AC_HELP_STRING([--disable-dri3], [Disable DRI3 support [[default=auto]]]), [DRI3="$enableval"], - [DRI3=auto]) + [DRI3=no]) AC_ARG_ENABLE(present, AC_HELP_STRING([--disable-present], [Disable PRESENT support [[default=auto]]]), [PRESENT="$enableval"], - [PRESENT=auto]) + [PRESENT=no]) # Checks for pkg-config packages PKG_CHECK_MODULES(XORG, [xorg-server >= 1.9.99.1 xproto fontsproto]) |