diff options
author | Alan Third <alan@idiocy.org> | 2020-01-01 11:44:21 +0000 |
---|---|---|
committer | Alan Third <alan@idiocy.org> | 2020-01-18 15:35:17 +0000 |
commit | 1e291a05f3603ef86ba3666dfdffd1159a36e8cf (patch) | |
tree | 7b2a5d067de16de304c48e56e1a9c07b5b5c3341 /configure.ac | |
parent | 43e79d42f9671de7e7c513e9be42e32aa9970603 (diff) | |
download | emacs-1e291a05f3603ef86ba3666dfdffd1159a36e8cf.tar.gz |
Don't error on non-toolkit NS scrollbars (bug#37042)
* configure.ac (HAVE_NS): Don't error, but warn, on non-toolkit
scrollbars.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
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= NS_OBJC_OBJ= if test "${HAVE_NS}" = yes; then if test "$with_toolkit_scroll_bars" = "no"; then - AC_MSG_ERROR([Non-toolkit scroll bars are not implemented for Nextstep.]) + AC_MSG_WARN([Non-toolkit scroll bars are not implemented for Nextstep.]) fi window_system=nextstep |