# HG changeset patch # User Bram Moolenaar # Date 1569783604 -7200 # Node ID 86a865a89661b6eccbe3a346beab175d2852c58b # Parent 9dc510e9e6e7256d4a8e770e2cf04471f38d43de patch 8.1.2102: can't build with GTK and FEAT_GUI_GNOME Commit: https://github.com/vim/vim/commit/d17a57a43330977b8f4eb36f1f7a4a66a7bb26c8 Author: Bram Moolenaar Date: Sun Sep 29 20:53:55 2019 +0200 patch 8.1.2102: can't build with GTK and FEAT_GUI_GNOME Problem: Can't build with GTK and FEAT_GUI_GNOME. (Tony Mechelynck) Solution: Adjust the #ifdef. (Yegappan Lakshmanan) diff --git a/src/session.c b/src/session.c --- a/src/session.c +++ b/src/session.c @@ -985,7 +985,7 @@ ex_loadview(exarg_T *eap) } } -# if defined(USE_GNOME_SESSION) \ +# if defined(FEAT_GUI_GNOME) \ || (defined(GUI_MAY_SPAWN) && defined(EXPERIMENTAL_GUI_CMD)) \ || defined(PROTO) /* diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -754,6 +754,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2102, +/**/ 2101, /**/ 2100,