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/configure.ac | |
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/configure.ac')
-rw-r--r-- | src/configure.ac | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/configure.ac b/src/configure.ac index d42455048..1c1b1c7e4 100644 --- a/src/configure.ac +++ b/src/configure.ac @@ -2606,10 +2606,6 @@ if test -z "$SKIP_GTK2"; then 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 - AC_DEFINE(HAVE_GTK_MULTIHEAD) - fi dnl dnl if GTK exists, then check for GNOME. dnl @@ -2658,7 +2654,6 @@ if test -z "$SKIP_GTK3"; then SKIP_MOTIF=YES GUITYPE=GTK AC_SUBST(GTK_LIBNAME) - AC_DEFINE(HAVE_GTK_MULTIHEAD) AC_DEFINE(USE_GTK3) fi fi |