diff options
| author | Jan Djärv | 2004-11-02 16:26:46 +0000 |
|---|---|---|
| committer | Jan Djärv | 2004-11-02 16:26:46 +0000 |
| commit | d0a80c21f31969243fa4ebc98883ba40c9987bc2 (patch) | |
| tree | 9f9959390739eda85e7cbb65fbd7916b426d6d24 | |
| parent | a11e1dce8fc37f32ffa428032e868369c7a6aa0f (diff) | |
| download | emacs-d0a80c21f31969243fa4ebc98883ba40c9987bc2.tar.gz emacs-d0a80c21f31969243fa4ebc98883ba40c9987bc2.zip | |
* configure.in (HAVE_GTK): Only set with_toolkit_scroll_bars if not
explicitly set to no.
| -rw-r--r-- | ChangeLog | 3 | ||||
| -rwxr-xr-x | configure | 4 | ||||
| -rw-r--r-- | configure.in | 4 |
3 files changed, 9 insertions, 2 deletions
| @@ -2,6 +2,9 @@ | |||
| 2 | 2 | ||
| 3 | * configure.in (HAVE_GTK_FILE_CHOOSER, $HAVE_GTK_FILE_SELECTION): New | 3 | * configure.in (HAVE_GTK_FILE_CHOOSER, $HAVE_GTK_FILE_SELECTION): New |
| 4 | tests for new and old GTK file dialogs. | 4 | tests for new and old GTK file dialogs. |
| 5 | (HAVE_GTK): Only set with_toolkit_scroll_bars if not explicitly set | ||
| 6 | to no. | ||
| 7 | |||
| 5 | * configure: Rebuild | 8 | * configure: Rebuild |
| 6 | 9 | ||
| 7 | 2004-10-20 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | 10 | 2004-10-20 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> |
| @@ -9797,7 +9797,9 @@ _ACEOF | |||
| 9797 | 9797 | ||
| 9798 | USE_X_TOOLKIT=none | 9798 | USE_X_TOOLKIT=none |
| 9799 | 9799 | ||
| 9800 | with_toolkit_scroll_bars=yes | 9800 | if test "$with_toolkit_scroll_bars" != no; then |
| 9801 | with_toolkit_scroll_bars=yes | ||
| 9802 | fi | ||
| 9801 | 9803 | ||
| 9802 | HAVE_GTK_MULTIDISPLAY=no | 9804 | HAVE_GTK_MULTIDISPLAY=no |
| 9803 | 9805 | ||
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 | |||
| 1967 | 1967 | ||
| 1968 | dnl GTK scrollbars resemble toolkit scrollbars a lot, so to avoid | 1968 | dnl GTK scrollbars resemble toolkit scrollbars a lot, so to avoid |
| 1969 | dnl a lot if #ifdef:s, say we have toolkit scrollbars. | 1969 | dnl a lot if #ifdef:s, say we have toolkit scrollbars. |
| 1970 | with_toolkit_scroll_bars=yes | 1970 | if test "$with_toolkit_scroll_bars" != no; then |
| 1971 | with_toolkit_scroll_bars=yes | ||
| 1972 | fi | ||
| 1971 | 1973 | ||
| 1972 | dnl Check if we can use multiple displays with this GTK version. | 1974 | dnl Check if we can use multiple displays with this GTK version. |
| 1973 | dnl If gdk_display_open exists, assume all others are there also. | 1975 | dnl If gdk_display_open exists, assume all others are there also. |