From a65170657e74fb7ea6f220e63a26cc02cc24aa73 Mon Sep 17 00:00:00 2001 From: Nexarian Date: Tue, 10 May 2022 00:31:51 -0400 Subject: [PATCH] Fix configure --- configure.ac | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configure.ac b/configure.ac index f64b8697..d17fc86d 100644 --- a/configure.ac +++ b/configure.ac @@ -80,6 +80,11 @@ AC_ARG_ENABLE(glamor, AS_HELP_STRING([--enable-glamor], [], [enable_glamor=no]) AM_CONDITIONAL(WITH_GLAMOR, [test x$enable_glamor = xyes]) +AC_ARG_ENABLE(lrandr, AS_HELP_STRING([--enable-lrandr], + [Use local randr (default: no)]), + [], [enable_lrandr=no]) +AM_CONDITIONAL(WITH_LRANDR, [test x$enable_lrandr = xyes]) + AM_CONDITIONAL(WITH_SIMD_AMD64, [test x$simd_arch = xx86_64]) AM_CONDITIONAL(WITH_SIMD_X86, [test x$simd_arch = xi386])