From 09c56140a2cce0dcd3eebb92d3fba0df6199c204 Mon Sep 17 00:00:00 2001 From: "Carlos R. Mafra" Date: Thu, 7 Oct 2010 08:39:32 +0200 Subject: [PATCH] configure: Disable XRandR by default Some people using nvidia and/or playing some games (e.g. Einstein) are reporting some issues with the restart induced by the resolution changing. Let's disable it by default. People without nvidia cards etc can still enable it with --enable-xrandr. Signed-off-by: Carlos R. Mafra --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 75751920..4606bc70 100644 --- a/configure.ac +++ b/configure.ac @@ -449,9 +449,9 @@ fi dnl XRandR support dnl ============= -xrandr=yes -AC_ARG_ENABLE(XRandR, AS_HELP_STRING([--disable-xrandr], [disable XRandR window extension support]), - xrandr=$enableval, xrandr=yes) +xrandr=no +AC_ARG_ENABLE(xrandr, AS_HELP_STRING([--enable-xrandr], [enable XRandR window extension support]), + xrandr=$enableval, xrandr=no) added_xext=no if test "$xrandr" = yes; then