On Thu, 7 Oct 2010 at 8:35:50 +0200, Carlos R. Mafra wrote: > > I will disable it by default in master.
>From ae9ec1a3aa0582ab63f52dc5df2653b7f99f8ea9 Mon Sep 17 00:00:00 2001 From: Carlos R. Mafra <[email protected]> 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 <[email protected]> --- configure.ac | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 7575192..eab6922 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 -- 1.7.2.2.119.gf9c33 -- To unsubscribe, send mail to [email protected].
