diff options
author | Jan Djärv <jan.h.d@swipnet.se> | 2004-11-02 16:26:46 +0000 |
---|---|---|
committer | Jan Djärv <jan.h.d@swipnet.se> | 2004-11-02 16:26:46 +0000 |
commit | d0a80c21f31969243fa4ebc98883ba40c9987bc2 (patch) | |
tree | 9f9959390739eda85e7cbb65fbd7916b426d6d24 /configure.in | |
parent | a11e1dce8fc37f32ffa428032e868369c7a6aa0f (diff) | |
download | emacs-d0a80c21f31969243fa4ebc98883ba40c9987bc2.tar.gz |
* configure.in (HAVE_GTK): Only set with_toolkit_scroll_bars if not
explicitly set to no.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 1f49cc536aa..1478d4d4b5d 100644 --- a/configure.in +++ b/configure.in @@ -1967,7 +1967,9 @@ if test "${with_gtk}" = "yes" || test "$USE_X_TOOLKIT" = "gtk"; then dnl GTK scrollbars resemble toolkit scrollbars a lot, so to avoid dnl a lot if #ifdef:s, say we have toolkit scrollbars. - with_toolkit_scroll_bars=yes + if test "$with_toolkit_scroll_bars" != no; then + with_toolkit_scroll_bars=yes + fi dnl Check if we can use multiple displays with this GTK version. dnl If gdk_display_open exists, assume all others are there also. |