diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-06-05 15:07:09 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-06-05 15:07:09 +0200 |
commit | b463e8d999ec812d656876f313efbeaeed663b45 (patch) | |
tree | bb1a8339a15d93724916a8600087aacc97939278 /src/auto | |
parent | 6aa8cea46d4179b2617daae034063dd0d8054e35 (diff) | |
download | vim-git-b463e8d999ec812d656876f313efbeaeed663b45.tar.gz |
patch 8.0.0620: checking for HAVE_GTK_MULTIHEAD is not neededv8.0.0620
Problem: Since we only support GTK versions that have it, the ckeck for
HAVE_GTK_MULTIHEAD is no longer needed.
Solution: Remove HAVE_GTK_MULTIHEAD. (Kazunobu Kuriyama)
Diffstat (limited to 'src/auto')
-rwxr-xr-x | src/auto/configure | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/auto/configure b/src/auto/configure index 6dd5bb9ba..1980a95b2 100755 --- a/src/auto/configure +++ b/src/auto/configure @@ -8997,11 +8997,6 @@ $as_echo "no" >&6; } fi fi if test "x$GUITYPE" = "xGTK"; then - if test "$gtk_minor_version" = 1 -a "0$gtk_micro_version" -ge 1 \ - || test "0$gtk_minor_version" -ge 2; then - $as_echo "#define HAVE_GTK_MULTIHEAD 1" >>confdefs.h - - fi if test -z "$SKIP_GNOME"; then { @@ -9294,8 +9289,6 @@ $as_echo "no" >&6; } SKIP_MOTIF=YES GUITYPE=GTK - $as_echo "#define HAVE_GTK_MULTIHEAD 1" >>confdefs.h - $as_echo "#define USE_GTK3 1" >>confdefs.h fi |