mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-23 07:19:15 +00:00
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)
This commit is contained in:
parent
948181df9c
commit
c5af19cba5
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user