From c5af19cba5924de89a38e7a177c07f42fd3cd543 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Thu, 31 Mar 2022 19:15:45 +0300 Subject: [PATCH] Fix a bug in configure.ac that failed the --without-x build * configure.ac (USE_TOOLKIT_SCROLL_BARS): Fix test for unsupported scroll-bars configuration. (Bug#54629) --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 93c821eda08..254f15bef3e 100644 --- a/configure.ac +++ b/configure.ac @@ -3357,7 +3357,7 @@ if test "${with_toolkit_scroll_bars}" != "no"; then AC_DEFINE(USE_TOOLKIT_SCROLL_BARS) USE_TOOLKIT_SCROLL_BARS=yes fi -elif test "${window_system}" != "x11"; then +elif test "${window_system}" != "x11" && "${window_system}" != "none"; then AC_MSG_ERROR(Non-toolkit scroll bars are not implemented for your system) fi -- 2.39.2