Mercurial > emacs
changeset 57902:2cc8d9bbb72b
* configure.in (HAVE_GTK): Only set with_toolkit_scroll_bars if not
explicitly set to no.
author | Jan Djärv <jan.h.d@swipnet.se> |
---|---|
date | Tue, 02 Nov 2004 16:26:46 +0000 |
parents | cdbca26f9090 |
children | d6224ed60e43 |
files | ChangeLog configure configure.in |
diffstat | 3 files changed, 9 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Tue Nov 02 16:25:50 2004 +0000 +++ b/ChangeLog Tue Nov 02 16:26:46 2004 +0000 @@ -2,6 +2,9 @@ * configure.in (HAVE_GTK_FILE_CHOOSER, $HAVE_GTK_FILE_SELECTION): New tests for new and old GTK file dialogs. + (HAVE_GTK): Only set with_toolkit_scroll_bars if not explicitly set + to no. + * configure: Rebuild 2004-10-20 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
--- a/configure Tue Nov 02 16:25:50 2004 +0000 +++ b/configure Tue Nov 02 16:26:46 2004 +0000 @@ -9797,7 +9797,9 @@ USE_X_TOOLKIT=none - with_toolkit_scroll_bars=yes + if test "$with_toolkit_scroll_bars" != no; then + with_toolkit_scroll_bars=yes + fi HAVE_GTK_MULTIDISPLAY=no
--- a/configure.in Tue Nov 02 16:25:50 2004 +0000 +++ b/configure.in Tue Nov 02 16:26:46 2004 +0000 @@ -1967,7 +1967,9 @@ 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.