1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-01-04 12:54:20 +01:00

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 <crmafra@gmail.com>
This commit is contained in:
Carlos R. Mafra
2010-10-07 08:39:32 +02:00
parent ece6d213aa
commit 09c56140a2

View File

@@ -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