summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorJan Djärv <jan.h.d@swipnet.se>2004-11-02 16:26:46 +0000
committerJan Djärv <jan.h.d@swipnet.se>2004-11-02 16:26:46 +0000
commit8673250ffe24eeb26ad1e06c0198841e9db92a0c (patch)
tree168250e111ee1ec9e3e0ba475bb204ae78ec43fd /configure.in
parent0f1fe1bbecc72dafc358f00a218d84782a5d3f57 (diff)
downloademacs-8673250ffe24eeb26ad1e06c0198841e9db92a0c.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.in4
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.