# HG changeset patch # User Christian Brabandt # Date 1456263909 -3600 # Node ID a777ff82652354daf6156b9eb176ba08c029cd79 # Parent 5ace03b16fcd2ca6f62e407d6401a56d773fc174 commit https://github.com/vim/vim/commit/1858a842af5e3b07157add378ee3fd7b512cfea6 Author: Bram Moolenaar Date: Tue Feb 23 22:30:31 2016 +0100 patch 7.4.1409 Problem: Configure includes GUI despite --disable-gui flag. Solution: Add SKIP_GTK3. (Kazunobu Kuriyama) diff --git a/src/auto/configure b/src/auto/configure --- a/src/auto/configure +++ b/src/auto/configure @@ -8545,6 +8545,7 @@ enable_gui_canon=`echo "_$enable_gui" | sed 's/[ _+-]//g;y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'` SKIP_GTK2=YES +SKIP_GTK3=YES SKIP_GNOME=YES SKIP_MOTIF=YES SKIP_ATHENA=YES diff --git a/src/configure.in b/src/configure.in --- a/src/configure.in +++ b/src/configure.in @@ -2207,6 +2207,7 @@ enable_gui_canon=`echo "_$enable_gui" | dnl Skip everything by default. SKIP_GTK2=YES +SKIP_GTK3=YES SKIP_GNOME=YES SKIP_MOTIF=YES SKIP_ATHENA=YES diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -749,6 +749,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1409, +/**/ 1408, /**/ 1407,