mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
Fix check for window system with toolkit scrollbars
* configure.ac (USE_TOOLKIT_SCROLL_BARS): Add missing 'test' to condition. (Bug#55970)
This commit is contained in:
parent
b2b939e5a1
commit
1054d38bc7
1 changed files with 1 additions and 1 deletions
|
|
@ -3436,7 +3436,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" && "${window_system}" != "none"; then
|
||||
elif test "${window_system}" != "x11" && test "${window_system}" != "none"; then
|
||||
AC_MSG_ERROR(Non-toolkit scroll bars are not implemented for your system)
|
||||
fi
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue