diff options
author | Alex Deucher <alexander.deucher@amd.com> | 2013-09-16 09:41:13 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2013-09-16 11:58:19 -0400 |
commit | 282587cd0709850e7bacb1d8307065d95dc2c97d (patch) | |
tree | 5b2ad94197e82d002e597316b340e2812e25dc09 /configure.ac | |
parent | fdb7563a5cbc736b09c2864b67a93b475c98b2bd (diff) |
radeon: enable glamor by default (v4)
It's required for newer asics, so enable it by
default.
v2: update the autoconf help. Require --disable-glamor
to build without glamor support.
v3: default to yes rather than auto
v4: fix help text
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index d1cf1151..f25d5e8b 100644 --- a/configure.ac +++ b/configure.ac @@ -100,10 +100,10 @@ CPPFLAGS="$CPPFLAGS $XORG_CFLAGS" AC_MSG_CHECKING([whether to include GLAMOR support]) AC_ARG_ENABLE(glamor, - AS_HELP_STRING([--enable-glamor], - [Enable glamor, a new GL-based acceleration [default=no]]), + AS_HELP_STRING([--disable-glamor], + [Disable glamor, a new GL-based acceleration [default=enabled]]), [GLAMOR="$enableval"], - [GLAMOR=no]) + [GLAMOR=yes]) AC_MSG_RESULT([$GLAMOR]) AM_CONDITIONAL(GLAMOR, test x$GLAMOR != xno) if test "x$GLAMOR" != "xno"; then |