aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlan Third2020-01-01 11:44:21 +0000
committerAlan Third2020-01-18 15:35:17 +0000
commit1e291a05f3603ef86ba3666dfdffd1159a36e8cf (patch)
tree7b2a5d067de16de304c48e56e1a9c07b5b5c3341
parent43e79d42f9671de7e7c513e9be42e32aa9970603 (diff)
downloademacs-1e291a05f3603ef86ba3666dfdffd1159a36e8cf.tar.gz
emacs-1e291a05f3603ef86ba3666dfdffd1159a36e8cf.zip
Don't error on non-toolkit NS scrollbars (bug#37042)
* configure.ac (HAVE_NS): Don't error, but warn, on non-toolkit scrollbars.
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 3fa031d8077..8a13b36e942 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2041,7 +2041,7 @@ NS_OBJ=
2041NS_OBJC_OBJ= 2041NS_OBJC_OBJ=
2042if test "${HAVE_NS}" = yes; then 2042if test "${HAVE_NS}" = yes; then
2043 if test "$with_toolkit_scroll_bars" = "no"; then 2043 if test "$with_toolkit_scroll_bars" = "no"; then
2044 AC_MSG_ERROR([Non-toolkit scroll bars are not implemented for Nextstep.]) 2044 AC_MSG_WARN([Non-toolkit scroll bars are not implemented for Nextstep.])
2045 fi 2045 fi
2046 2046
2047 window_system=nextstep 2047 window_system=nextstep