projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b2b939e
)
Fix check for window system with toolkit scrollbars
author
Robert Pluim
<rpluim@gmail.com>
Thu, 16 Jun 2022 07:34:28 +0000
(09:34 +0200)
committer
Robert Pluim
<rpluim@gmail.com>
Thu, 16 Jun 2022 07:36:30 +0000
(09:36 +0200)
* configure.ac (USE_TOOLKIT_SCROLL_BARS): Add missing 'test' to
condition. (Bug#55970)
configure.ac
patch
|
blob
|
history
diff --git
a/configure.ac
b/configure.ac
index 5b86e9092558d0de815895872c1ddacc8d41b601..c91b7de322ad303ee99e1d4e4176e27fd2c24900 100644
(file)
--- a/
configure.ac
+++ b/
configure.ac
@@
-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