emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master c5af19cba5: Fix a bug in configure.ac that failed the --without-x


From: Eli Zaretskii
Subject: master c5af19cba5: Fix a bug in configure.ac that failed the --without-x build
Date: Thu, 31 Mar 2022 12:16:27 -0400 (EDT)

branch: master
commit c5af19cba5924de89a38e7a177c07f42fd3cd543
Author: Eli Zaretskii <eliz@gnu.org>
Commit: Eli Zaretskii <eliz@gnu.org>

    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 93c821eda0..254f15bef3 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
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]